-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
{
"name": "zec-multisig",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"check:network": "ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bs58check": "^2.1.2",
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@bitgo/utxo-lib": "^11.15.0",
"@mayaprotocol/zcash-js": "^1.0.7",
"@tatumio/tatum": "^4.2.58",
"bip32": "^5.0.0",
"bip39": "^3.1.0",
"bs58check": "^4.0.0",
"tiny-secp256k1": "^2.2.4"
}
}