forked from edge/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.05 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
{
"name": "@edge/cli",
"version": "1.8.5",
"description": "Command line interface for the Edge network",
"private": true,
"author": "Edge Network <core@edge.network>",
"contributors": [
"Aneurin \"Anny\" Barker Snook <aneurin@edge.network>",
"Adam K Dean <adam@edge.network>"
],
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "npm run testnet:build",
"dev": "ts-node src/main-testnet.ts",
"lint:fix": "eslint --fix --ext .ts src",
"lint": "eslint --ext .ts src",
"test": "echo \"Error: no test specified\"",
"mainnet:build:executable": "pkg out/src/main-mainnet.js -t host --output bin/edge",
"mainnet:build:in-docker": "ROOT=${PWD} BUILD_TARGET=$(.build/auto_target.sh) NETWORK=mainnet .build/build.sh",
"mainnet:build:src": "tsc",
"mainnet:build": "npm run mainnet:build:src && npm run mainnet:build:executable",
"testnet:build:executable": "pkg out/src/main-testnet.js -t host --output bin/edgetest",
"testnet:build:in-docker": "ROOT=${PWD} BUILD_TARGET=$(.build/auto_target.sh) NETWORK=testnet .build/build.sh",
"testnet:build:src": "tsc",
"testnet:build": "npm run testnet:build:src && npm run testnet:build:executable"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.4",
"@types/dockerode": "^3.3.0",
"@types/node": "^16.7.2",
"@types/semver": "^7.3.9",
"@types/superagent": "^4.1.13",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@edge/index-utils": "^0.3.5",
"@edge/log": "^1.3.0",
"@edge/stargate-utils": "^0.5.0",
"@edge/wallet-utils": "^0.14.2",
"@edge/xe-utils": "^1.8.1",
"ansi-regex": "^5.0.1",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"dockerode": "^3.3.1",
"dotenv": "^10.0.0",
"semver": "^7.3.5",
"superagent": "^8.0.6",
"tar-stream": "^2.2.0"
},
"optionalDependencies": {
"pkg": "^5.8.0"
}
}