forked from dfinity/hardware-wallet-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
{
"name": "@dfinity/hardware-wallet-cli",
"version": "0.2.2",
"description": "A CLI to interact with the Internet Computer App on Ledger Nano S/X devices.",
"main": "./build/index.js",
"scripts": {
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"prepack": "npm run build",
"clean": "tsc --build --clean",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"execute": "ts-node ./index.ts",
"update:next": "npm update @dfinity/nns @dfinity/utils",
"update:agent": "npm rm @dfinity/agent @dfinity/principal && npm i @dfinity/agent @dfinity/principal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/hardware-wallet-cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dfinity/hardware-wallet-cli/issues"
},
"homepage": "https://github.com/dfinity/hardware-wallet-cli#readme",
"dependencies": {
"@dfinity/agent": "^0.14.0",
"@dfinity/nns": "next",
"@dfinity/principal": "^0.14.0",
"@dfinity/utils": "next",
"@ledgerhq/hw-transport-node-hid-noevents": "^6.3.0",
"@ledgerhq/hw-transport-webhid": "^6.27.1",
"@zondax/ledger-icp": "^0.6.0",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"node-fetch": "^2.6.1",
"node-window-polyfill": "^1.0.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.6",
"@types/node": "^17.0.16",
"@types/node-hid": "^1.3.1",
"prettier": "^2.6.2",
"ts-node": "^10.8.0"
},
"bin": {
"ic-hardware-wallet": "./build/index.js"
}
}