-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@dfinity/hardware-wallet-cli",
"version": "0.6.0",
"description": "A CLI to interact with the Internet Computer App on Ledger Nano S/X devices.",
"main": "./dist/index.js",
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"scripts": {
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node rmdir.mjs && node esbuild.mjs",
"prepack": "npm run build",
"clean": "npm run build",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"execute": "ts-node ./src/index.ts",
"update:next": "npm update @dfinity/nns @dfinity/sns @dfinity/utils",
"update:agent": "npm rm @dfinity/agent @dfinity/principal && npm i @dfinity/agent @dfinity/principal",
"build:tokens": "ts-node ./scripts/get-tokens-list.ts"
},
"engineStrict": true,
"engines": {
"node": ">= 18.13.0"
},
"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": "^2.1.2",
"@dfinity/ledger-icrc": "^2.6.0",
"@dfinity/nns": "^7.0.0",
"@dfinity/principal": "^2.1.2",
"@dfinity/sns": "^3.2.1",
"@dfinity/utils": "^2.5.0",
"@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": {
"@dfinity/cketh": "^3.3.1",
"@esbuild-plugins/node-resolve": "^0.2.0",
"@types/google-protobuf": "^3.15.6",
"@types/node": "^17.0.16",
"@types/node-hid": "^1.3.1",
"esbuild": "^0.17.4",
"prettier": "^2.6.2",
"ts-node": "^10.9.1"
},
"bin": {
"ic-hardware-wallet": "./dist/index.js"
},
"overrides": {
"semver": "^7.5.3"
}
}