-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@zondax/zemu",
"author": "Zondax AG",
"license": "Apache-2.0",
"version": "0.0.0",
"description": "Zemu Testing Framework",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/zondax/zemu",
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/zemu.git"
},
"keywords": [
"Zondax",
"Ledger",
"Testing",
"Zemu"
],
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm rimraf dist && tsc && pnpm copy-files",
"copy-files": "copyfiles -u 0 src/**/*.proto dist/",
"test:clean": "pnpm ts-node tests/pullImageKillOld.ts",
"test": "pnpm test:clean && pnpm build && vitest run",
"test:watch": "vitest",
"lint": "biome lint src/ tests/",
"lint:fix": "biome check --write --unsafe .",
"format": "biome format --write src/ tests/",
"check": "biome check src/ tests/",
"check:fix": "biome check --write src/ tests/",
"fix": "pnpm run lint:fix"
},
"bugs": {
"url": "https://github.com/zondax/zemu/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@ledgerhq/hw-transport-http": "^6.30.8",
"@ledgerhq/errors": "^6.23.0",
"axios": "^1.11.0",
"axios-retry": "^4.5.0",
"dockerode": "^4.0.7",
"elfy": "^1.0.0",
"fs-extra": "^11.3.0",
"get-port": "^5.1.1",
"pngjs": "^7.0.0",
"randomstring": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@ledgerhq/hw-transport": "^6.31.8",
"@types/dockerode": "^3.3.42",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.1.0",
"@types/pngjs": "^6.0.5",
"@types/randomstring": "^1.3.0",
"@zondax/ledger-substrate": "^1.1.2",
"copyfiles": "^2.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "5.8.3",
"vitest": "^3.2.4"
},
"files": [
"dist/**/*"
]
}