-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"pretest": "just build-icrc21-canister",
"test": "vitest run",
"typecheck": "pnpm -r run build && pnpm -r run typecheck",
"build": "pnpm -r run build",
"update:icp-sdk": "pnpm update @icp-sdk/canisters @icp-sdk/core @dfinity/utils",
"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"
},
"license": "ISC",
"devDependencies": {
"@dfinity/pic": "^0.21.0",
"@icp-sdk/core": "^5.2.1",
"@types/google-protobuf": "^3.15.6",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vitest": "^4.1.2"
},
"overrides": {
"semver": "^7.5.3"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild",
"node-hid"
],
"onlyBuiltDependencies": [
"@dfinity/pic",
"esbuild",
"node-hid"
]
}
}