-
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.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.01 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 && cp src/grpc/*.proto dist/grpc/",
"test:clean": "pnpm ts-node tests/pullImageKillOld.ts",
"test": "pnpm test:clean && pnpm build && vitest run",
"test:watch": "pnpm build && 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",
"typecheck": "tsc --noEmit"
},
"bugs": {
"url": "https://github.com/Zondax/zemu/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.4",
"@grpc/proto-loader": "^0.8.1",
"@ledgerhq/hw-transport-http": "^6.36.5",
"axios": "^1.20.0",
"axios-retry": "^4.5.0",
"dockerode": "^4.0.12",
"elfy": "^1.0.0",
"fs-extra": "^11.4.0",
"get-port": "5.1.1",
"pngjs": "^7.0.0",
"randomstring": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.12",
"@ledgerhq/hw-transport": "^6.35.7",
"@types/dockerode": "^4.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.9.5",
"@types/pngjs": "^6.0.5",
"@types/randomstring": "^1.3.0",
"@zondax/ledger-substrate": "^2.3.7",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"vitest": "^4.1.11"
},
"files": [
"dist/**/*"
],
"pnpm": {
"overrides": {
"axios": "^1.20.0",
"ws": "^8.21.0",
"uuid": "^11.1.1"
}
}
}