-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.73 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
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
{
"name": "@lidofinance/lsv-cli",
"version": "0.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"type": "module",
"bin": {
"lsv-cli": "dist/index.js"
},
"scripts": {
"start": "ts-node ./index.ts",
"build": "npx tsc && tsc-alias",
"types": "echo 'No types yet'",
"lint": "eslint . --ext .ts --max-warnings 0",
"test": "echo 'No tests yet'",
"prepare": "git config core.hooksPath .git-hooks || echo 'Not in a git repo'",
"prepublishOnly": "node scripts/updateVersion.cjs"
},
"homepage": "https://github.com/lidofinance/liquid-staking-vault-cli/",
"repository": {
"type": "git",
"url": "git+https://github.com/lidofinance/liquid-staking-vault-cli.git",
"directory": "packages/sdk"
},
"bugs": {
"url": "https://github.com/lidofinance/liquid-staking-vault-cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {
"@chainsafe/persistent-merkle-tree": "^1.0.1",
"@chainsafe/ssz": "^1.0.2",
"@lodestar/types": "^1.27.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.3.0",
"viem": "^2.21.37"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt": "^17.4.4",
"@lidofinance/eslint-config": "^0.48.0",
"@swc/core": "^1.7.42",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.46.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": "^27",
"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",
"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",
"typescript": "^5.7.2"
},
"lint-staged": {
"./**/*.{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"
}