-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.2 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
54
55
56
{
"name": "forgebox-cli",
"version": "1.0.1",
"main": "dist/index.js",
"bin": {
"forgebox": "./bin/forgebox"
},
"files": [
"dist",
"bin",
"README.md",
"README_ZH.md"
],
"scripts": {
"build": "tsc",
"dev": "npm run build && npm link",
"prepare": "npm run build",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"forgebox",
"keystone",
"hardware-wallet",
"cli",
"usb"
],
"author": "KeystoneHQ",
"license": "ISC",
"description": "CLI tool for ForgeBox",
"repository": {
"type": "git",
"url": "git+https://github.com/KeystoneHQ/forgebox-cli.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/elliptic": "6.4.18",
"@types/inquirer": "9.0.9",
"@types/node": "25.0.10",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"@keystonehq/hw-transport-nodeusb": "0.2.0",
"@keystonehq/hw-transport-usb": "0.2.0",
"chalk": "4.1.2",
"commander": "14.0.2",
"elliptic": "6.6.1",
"inquirer": "8.2.7",
"ora": "5.4.1",
"usb": "2.17.0"
}
}