-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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
{
"name": "@ioplus/snapcli",
"description": "Command-line tool for casting votes on Snapshot.org DAO proposals directly from your terminal.",
"version": "0.1.20",
"main": "index.js",
"keywords": [
"snapshot",
"DAO",
"goverance",
"snapshot vote",
"goverance vote",
"DAO vote"
],
"bin": {
"snapcli": "./bin/index.js",
"snap": "./bin/index.js"
},
"scripts": {
"devBuild": "shx rm -rf lib && tsc",
"build": "shx rm -rf lib && tsc --sourceMap false"
},
"files": [
"lib",
"bin",
"package.json",
"README.md",
"README.zh-CN.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ioplustech/snapcli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ioplustech/snapcli/issues"
},
"homepage": "https://github.com/ioplustech/snapcli#readme",
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.13",
"@types/minimist": "^1.2.2",
"@types/node": "^18.14.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"boxen": "^5.1.2",
"colors": "^1.4.0",
"commander": "^10.0.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"fs-extra": "^11.2.0",
"minimist": "^1.2.8",
"node-abort-controller": "^3.1.1",
"ora": "^5.4.1",
"pino": "^8.11.0",
"pino-tee": "^0.3.0",
"semver": "^7.3.8"
}
}