-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "auto-redeem",
"version": "2.0.0",
"description": "Auto-redeem rescue script with CLI interface",
"main": "index.js",
"scripts": {
"start": "tsx src/cli.ts",
"start:vault-redeem": "tsx src/modes/vault-redeem/script.ts",
"start:morpho-market-withdraw": "tsx src/modes/auto-withdraw/script.ts",
"start:legacy": "tsx src/legacy.ts",
"dev": "tsx watch src/cli.ts",
"dev:vault-redeem": "tsx watch src/modes/vault-redeem/script.ts",
"dev:morpho-market-withdraw": "tsx watch src/modes/auto-withdraw/script.ts",
"dev:legacy": "tsx watch src/legacy.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.1",
"prompts": "^2.4.2",
"viem": "^2.38.6"
},
"devDependencies": {
"@types/node": "^24.10.0",
"@types/prompts": "^2.4.9",
"dotenv": "^17.2.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}