-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 814 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
28
{
"name": "robonado",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "RoboNado — AI trading copilot for Nado's commodity, FX, and equity perpetuals on Ink L2.",
"engines": {
"node": ">=22.6"
},
"scripts": {
"test": "node --test test/*.test.ts",
"markets": "node scripts/markets.ts",
"dry-run": "node scripts/dry-run.ts",
"preflight": "node scripts/preflight.ts",
"trade": "node --env-file-if-exists=.env scripts/trade.ts",
"account": "node scripts/account.ts",
"chat": "node --env-file-if-exists=.env scripts/chat.ts",
"bot": "node --env-file-if-exists=.env scripts/bot.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.120.0",
"viem": "^2.55.16",
"zod": "^4.4.3"
},
"devDependencies": {
"sharp": "^0.34.5"
}
}