-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (40 loc) · 1.28 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
{
"name": "kuoka-multisig-workflow",
"version": "1.0.0",
"description": "Kuoka, tezos4africa multisig actions",
"scripts": {
"build": "tsc",
"misc": "ts-node src/misc.ts",
"initAccounts": "ts-node src/initAccounts.ts",
"deployMultisig": "ts-node src/deployMultisig.ts",
"transferBalance": "ts-node src/transferBalance.ts",
"transferToken": "ts-node src/transferToken.ts",
"rotateKeys": "ts-node src/rotateKeys.ts",
"transferIndexedToken": "node dist/transferIndexedToken.js",
"delegate": "node dist/delegate.js"
},
"author": "anonymoussprocket",
"license": "Apache2",
"engines": {
"node": ">=v16.14.2",
"npm": ">=8.5.0"
},
"homepage": "https://github.com/anonymoussprocket/KuokaMultisig",
"dependencies": {
"@types/node": "^18.0.3",
"@types/node-fetch": "2.6.2",
"@types/glob": "^7.2.0",
"big-integer": "^1.6.51",
"bignumber.js": "^9.0.2",
"conseiljs": "^5.1.0",
"conseiljs-softsigner": "^5.0.4-1",
"glob": "^8.0.3",
"jsonpath-plus": "^7.0.0",
"loglevel": "^1.8.0",
"node-fetch": "2.6.7"
},
"devDependencies": {
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}