-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.05 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": "bitcoin-wallet-api-node",
"version": "2.0.0",
"description": "Password-protected Bitcoin wallet backend (Node/Express + bitcoinjs). Create single/HD wallets, send (RBF), time-lock, QR (BIP21), fee estimates, mempool.space integration. Testnet-ready.",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@noble/secp256k1": "^2.3.0",
"@scure/bip32": "^1.7.0",
"@scure/bip39": "^1.6.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"bitcoinjs-lib": "^6.1.7",
"dotenv": "^16.4.5",
"ecpair": "^2.1.0",
"express": "^4.19.2",
"node-localstorage": "^2.2.1",
"qrcode": "^1.5.4",
"tiny-secp256k1": "^2.2.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/node-localstorage": "^1.3.3",
"@types/qrcode": "^1.5.5",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}