-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.01 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
78
79
{
"name": "@pooltogether/v5-cli",
"description": "PoolTogether V5 Command Line Interface",
"author": "PoolTogether Inc",
"license": "GPL-3.0-only",
"version": "0.0.1-beta.22",
"repository": "https://github.com/pooltogether/v5-cli",
"homepage": "https://github.com/pooltogether/v5-cli",
"bugs": "https://github.com/pooltogether/v5-cli/issues",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bin": {
"ptv5": "./bin/run"
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"prepack": "yarn build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"manifest": "oclif manifest",
"version": "oclif readme && git add README.md",
"_ptv5": "./bin/run"
},
"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",
"@oclif/core": "^2.8.5",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^3.0.1",
"@pooltogether/v5-utils-js": "0.0.1-beta.26",
"ajv": "^8.10.0",
"ethers": "^5.7.2",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"piscina": "^3.2.0",
"spawn-promise": "^0.1.8",
"yarn": "^1.22.19"
},
"devDependencies": {
"@oclif/test": "^2.3.20",
"@pooltogether/evm-chains-extended": "^0.6.4-beta.1",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"chai": "^4",
"globby": "^11",
"mocha": "^9",
"oclif": "^3.9.0",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.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"
}