-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 812 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
{
"name": "bip47-terminal",
"version": "1.0.0",
"description": "BIP47 payment code and PayNym explorer with Auth47 authentication",
"license": "AGPL-3.0-only",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"build": "echo 'Building BIP47 Terminal...' && ls -la public/ && echo 'Public directory contents verified'",
"test": "node --test \"test/*.test.mjs\""
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@dojo-tools/auth47": "^2.0.1",
"@dojo-tools/bip47": "^2.0.1",
"@dojo-tools/bitcoinjs-message": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-rate-limit": "^7.4.1",
"mongodb": "^6.3.0",
"qrcode": "^1.5.3"
}
}