-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@generationsoftware/pt-v5-cli",
"description": "PoolTogether V5 Command Line Interface",
"author": {
"name": "G9 Software Inc.",
"url": "https://github.com/generationsoftware"
},
"license": "MIT",
"version": "2.0.7",
"repository": "https://github.com/generationsoftware/pt-v5-cli",
"homepage": "https://github.com/generationsoftware/pt-v5-cli",
"bugs": "https://github.com/generationsoftware/pt-v5-cli/issues",
"type": "module",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bin": {
"ptv5": "./bin/run.js"
},
"scripts": {
"build": "shx rm -rf dist && tsc && npm run manifest",
"manifest": "oclif manifest",
"version": "oclif readme && git add README.md",
"_ptv5": "./bin/run.js"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@ethersproject/abi": "5.7.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@generationsoftware/pt-v5-utils-js": "1.2.5",
"@generationsoftware/js-winner-calc": "1.2.1",
"@oclif/core": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^4",
"ethers": "^5.7.2",
"yn": "^5.0.0"
},
"devDependencies": {
"@oclif/test": "^3",
"@pooltogether/evm-chains-extended": "^0.6.4-beta.1",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^20.14.10",
"chai": "^4",
"globby": "^11",
"mocha": "^9",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"oclif": {
"bin": "ptv5",
"dirname": "ptv5",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {}
},
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}