forked from lidofinance/lido-staking-vault-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.85 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@lidofinance/lsv-cli",
"version": "0.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"type": "module",
"bin": "dist/index.js",
"scripts": {
"start": "tsx ./index.ts",
"build": "npx tsc && tsc-alias",
"types": "echo 'No types yet'",
"lint": "eslint . --ext .ts --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"test:unit": "vitest run tests/utils",
"prepare": "git config core.hooksPath .git-hooks || echo 'Not in a git repo'",
"prepublishOnly": "node scripts/updateVersion.cjs"
},
"homepage": "https://github.com/lidofinance/lido-staking-vault-cli/",
"repository": {
"type": "git",
"url": "git+https://github.com/lidofinance/lido-staking-vault-cli.git"
},
"bugs": {
"url": "https://github.com/lidofinance/lido-staking-vault-cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {
"@chainsafe/blst": "^2.2.0",
"@chainsafe/persistent-merkle-tree": "^1.0.1",
"@chainsafe/ssz": "^1.2.2",
"@lodestar/types": "^1.35.0",
"@openzeppelin/merkle-tree": "^1.0.8",
"@walletconnect/sign-client": "^2.22.3",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"blockstore-core": "^5.0.2",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.3.0",
"ipfs-unixfs-importer": "^15.3.2",
"json-bigint": "^1.0.0",
"log-update": "^6.1.0",
"multiformats": "^13.3.2",
"ox": "^0.8.6",
"prompts": "^2.4.2",
"qrcode-terminal": "^0.12.0",
"viem": "^2.33.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt": "^19.8.1",
"@lidofinance/eslint-config": "^0.48.0",
"@swc/core": "^1.11.21",
"@types/blessed": "^0.1.25",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/json-bigint": "^1.0.4",
"@types/log-update": "^3.1.0",
"@types/node": "^22.14.1",
"@types/prompts": "^2.4.9",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5.46.0",
"@viem/anvil": "^0.0.10",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/eslint-plugin": "^1.5.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4",
"eslint-plugin-promise": "^6",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-unicorn": "^45",
"eslint-plugin-vitest": "^0.5.4",
"lint-staged": "^15.4.3",
"prettier": "^3.0.1",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.3",
"typescript": "^5.7.2",
"vitest": "^4.0.15"
},
"resolutions": {
"xml2js": "^0.5.0",
"tmp": "^0.2.4",
"tar": "^7.5.8"
},
"lint-staged": {
"{!(docs)/**/*.{ts,tsx},*.{ts,tsx}}": [
"eslint --ignore-path .gitignore --max-warnings=0"
],
"./**/*.{ts,tsx,css,md,json}": [
"prettier --write"
]
},
"release": {
"branches": [
"main",
{
"name": "develop",
"channel": "alpha",
"prerelease": "alpha"
}
]
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}