-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 958 Bytes
/
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
{
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"typescript": "~4.7.0"
},
"dependencies": {
"@blitslabs/filecoin-js-signer": "^1.0.6",
"@glif/filecoin-address": "^2.0.37",
"@polkadot/util": "^11.0.2",
"@zondax/filecoin-signing-tools": "^2.4.1",
"bignumber.js": "^8.1.1",
"dotenv": "^6.1.0",
"ts-node": "^10.9.1",
"web3": "^1.8.2",
"winston": "^3.8.2"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"create-multi-account": "ts-node ./build/src/index.js create ",
"init-multi-transfer": "ts-node ./build/src/index.js init ",
"approve-multi-transfer": "ts-node ./build/src/index.js approve ",
"cancel-multi-transfer": "ts-node ./build/src/index.js cancel ",
"simple-transfer": "ts-node ./build/src/index.js transfer "
}
}