-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "wallet-ui",
"description": "A Graphical User Interface (GUI) for DashWallet.js",
"author": "jojobyte <byte@jojo.io> (https://jojo.io/)",
"keywords": [
"dash",
"wallet",
"dashwallet",
"cryptocurrency",
"xpub",
"friends",
"gui",
"html",
"css",
"js",
"vanilla"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dashhive/wallet-ui.git"
},
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "npm run https",
"https": "npx sirv-cli -D --single 'src/index.html' --http2 --key ~/localhost.key.pem --cert ~/localhost.pem -p 5443 .",
"http": "npx sirv-cli -D --single 'src/index.html' -p 3080 .",
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p prettier@2.x -- prettier -w '**/*.{js,md}'",
"lint": "npx -p typescript@4.x -- tsc -p ./jsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node .github/workflows/deploy.js"
},
"dependencies": {
"@dashincubator/base58check": "^1.4.1",
"@dashincubator/ripemd160": "^3.0.0",
"@dashincubator/secp256k1": "^1.7.1-5",
"@zxing/library": "^0.20.0",
"crypticstorage": "^0.0.2",
"dashhd": "^3.3.0",
"dashkeys": "^1.1.0",
"dashphrase": "^1.4.0",
"dashsight": "^1.6.1",
"dashtx": "^0.13.2",
"dashwallet": "^0.7.0-1",
"html5-qrcode": "^2.3.8",
"idb": "^8.0.0",
"localforage": "^1.10.0",
"qrcode-svg": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.11.5"
}
}