-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
package.json
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
{
"name": "eth-validator-cli",
"version": "0.1.0",
"description": "CLI tool to manage Ethereum validators",
"license": "MIT",
"author": {
"name": "TobiWo"
},
"bin": {
"eth-validator-cli": "dist/cli/main.js"
},
"scripts": {
"build": "tsc --build",
"dev-start": "node -r ts-node/register ./src/cli/main.ts",
"package": "node scripts/package.js",
"start": "npm run build && node dist/cli/main.js"
},
"dependencies": {
"@chainsafe/blst": "^2.2.0",
"@types/node": "^22.9.3",
"@types/prompts": "^2.4.9",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"ethers": "^6.13.4",
"mathjs": "^14.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@eslint/migrate-config": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@yao-pkg/pkg": "^6.1.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sort-package-json": "^2.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}