-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
30 lines (30 loc) · 1.06 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
{
"name": "taproot-with-bitcoinjs",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:Eunovo/taproot-with-bitcoinjs.git",
"author": "Eunovo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^18.13.0",
"prettier": "^3.0.3",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.2",
"bitcoinjs-lib": "^6.1.0",
"ecpair": "^2.1.0",
"tiny-secp256k1": "^2.2.1",
"varuint-bitcoin": "^1.1.2"
},
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/index.js",
"start_process_trace": "yarn build && node dist/index.js process_trace",
"start_process_trace_with_equivocation": "yarn build && node dist/index.js process_trace_with_equivocation",
"start_bitvm_NAND_gate": "yarn build && node dist/index.js bitvm_NAND_gate",
"start_bitvm_bitvalue_commitment": "yarn build && node dist/index.js bitvm_bitvalue_commitment",
"start_savm_bit_commitment_tx": "yarn build && node dist/index.js savm_bit_commitment_tx"
}
}