-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 876 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 876 Bytes
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
{
"name": "pirexeth-ops-cli",
"version": "1.0.0",
"description": "CLI tool for PirexEth operations (harvest, dissolve-validator, etc.) using CubeSigner",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"harvest": "npx ts-node src/index.ts simulate",
"harvest:simulate": "npx ts-node src/index.ts simulate",
"harvest:broadcast": "npx ts-node src/index.ts broadcast",
"unstake": "npx ts-node src/unstake.ts",
"unstake:generate": "npx ts-node src/unstake.ts generate",
"unstake:bulk": "npx ts-node src/unstake.ts bulk",
"unstake:queue": "npx ts-node src/unstake.ts queue"
},
"dependencies": {
"@cubist-labs/cubesigner-sdk": "^0.1.50",
"axios": "^1.6.0",
"viem": "^2.21.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}