-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"author": {
"name": "TobiWo"
},
"bin": {
"eth-valctl": "src/cli/main.ts"
},
"dependencies": {
"@chainsafe/blst": "^2.2.0",
"@ethereumjs/common": "^10.1.0",
"@ethereumjs/tx": "^10.1.0",
"@ledgerhq/errors": "^6.29.0",
"@ledgerhq/hw-app-eth": "^7.4.1",
"@ledgerhq/hw-transport-node-hid": "^6.30.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"ethers": "^6.16.0",
"prompts": "^2.4.2",
"undici": "^7.18.2"
},
"description": "CLI tool to manage Ethereum validators",
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@eslint/migrate-config": "^1.6.1",
"@ledgerhq/types-cryptoassets": "^7.32.0",
"@ledgerhq/types-devices": "^6.28.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.6",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.2",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"semantic-release": "^25.0.3",
"sort-package-json": "^3.6.0",
"typescript": "^5.9.3"
},
"license": "MIT",
"name": "eth-valctl",
"overrides": {
"axios": "1.13.5",
"node-hid": "3.3.0"
},
"scripts": {
"clean": "rm -rf bin dist",
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check .",
"lint": "bunx eslint . --ext .ts --fix",
"package": "bun run scripts/package/package.ts",
"postinstall": "bun run scripts/package/patch-native-modules.ts",
"start": "bun run src/cli/main.ts",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "bun run --bun tsc --noEmit && echo \"\u2713 TypeScript compilation successful - no errors found\""
},
"type": "module",
"version": "0.6.0"
}