forked from coredao-org/btc-staking-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 800 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
33
34
{
"name": "btc-stake-command-tool",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"btcfi": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec 'tsc && node dist/index.js' --ext ts",
"build": "tsc",
"postinstall": "patch-package"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "20.11.26",
"commander": "12.0.0",
"typescript": "5.4.2"
},
"dependencies": {
"axios": "0.28.0",
"bignumber.js": "9.1.2",
"bitcoinjs-lib": "6.1.5",
"coinselect": "3.1.13",
"coinselect-segwit": "1.0.2",
"ecpair": "2.1.0",
"patch-package": "8.0.0",
"regtest-client": "0.2.1",
"tiny-secp256k1": "2.2.3"
}
}