-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.09 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
74
75
76
77
{
"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"
},
"scripts": {
"build": "rm -rf dist && tsc && mkdir -p dist/src/grpc && cp src/grpc/*.proto dist/src/grpc/",
"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",
"update:package": "ncu --interactive --packageManager pnpm"
},
"bugs": {
"url": "https://github.com/Zondax/zemu/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@ledgerhq/errors": "^6.32.0",
"@ledgerhq/hw-transport-http": "^6.35.1",
"axios": "^1.13.6",
"axios-retry": "^4.5.0",
"dockerode": "^4.0.10",
"elfy": "^1.0.0",
"fs-extra": "^11.3.4",
"get-port": "7.2.0",
"pngjs": "^7.0.0",
"randomstring": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@ledgerhq/hw-transport": "^6.34.1",
"@types/dockerode": "^4.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.5.0",
"@types/pngjs": "^6.0.5",
"@types/randomstring": "^1.3.0",
"@zondax/ledger-substrate": "^2.1.2",
"copyfiles": "^2.4.1",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "6.0.2",
"vitest": "^4.1.2"
},
"resolutions": {
"axios": "^1.13.2",
"glob": "^10.3.10"
},
"files": [
"dist/**/*"
]
}