forked from txalkan/thunder-swap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"name": "rln-submarine-poc",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"start": "node --enable-source-maps dist/index.js",
"build": "tsc -p tsconfig.json",
"derive-keys": "tsx src/bitcoin/derive_keys.ts",
"balance": "tsx src/bitcoin/balance.ts",
"addr": "tsx src/bitcoin/addr.ts",
"tx": "tsx src/bitcoin/tx.ts",
"scan": "tsx src/rln/scan.ts",
"claim": "tsx src/rln/claim.ts",
"tracker": "tsx src/rln/htlctracker.ts",
"check-indexer": "tsx src/rln/check_indexer.ts",
"test": "tsx src/bitcoin/htlc_p2tr.test.ts && tsx src/bitcoin/deposit.test.ts && tsx src/swap/runDeposit.test.ts",
"format": "prettier --write \"src/**/*.{ts,json,md}\" \"*.{json,md}\""
},
"dependencies": {
"axios": "^1.7.2",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.5",
"varuint-bitcoin": "^1.1.2",
"dotenv": "^16.4.5",
"ecpair": "^2.1.0",
"tiny-secp256k1": "^2.2.3",
"uint8array-tools": "^0.0.9",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.0.0",
"prettier": "^3.7.4",
"tsx": "^4.15.7",
"typescript": "^5.6.2"
}
}