-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hyli-wallet-cli",
"version": "0.7.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyli-org/wallet.git"
},
"description": "Standalone CLI tool for managing Hyli wallet accounts",
"bugs": {
"url": "https://github.com/hyli-org/wallet/issues"
},
"main": "dist/hyli-wallet.js",
"bin": {
"hyli-wallet": "./dist/hyli-wallet.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "bun run build",
"start": "node dist/hyli-wallet.js",
"dev": "tsc --watch",
"pub": "bun publish"
},
"dependencies": {
"borsher": "^3.6.0",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"elliptic": "^6.6.1",
"hyli": "^0.4.1",
"hyli-noir": "^0.3.0",
"hyli-wallet": "^0.5.4",
"js-sha3": "^0.9.3"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/elliptic": "^6.4.18",
"@types/node": "^20.19.19",
"typescript": "^5.9.3"
},
"keywords": [
"wallet",
"registration",
"hyli",
"blockchain",
"cli",
"command-line"
]
}