-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "orchestra",
"version": "0.1.0",
"description": "Always-on AI financial agent for onchain portfolio management — ETHGlobal Cannes 2025",
"main": "src/orchestrator/index.ts",
"scripts": {
"dev": "ts-node src/orchestrator/index.ts",
"build": "tsc",
"start": "node dist/orchestrator/index.js",
"ledger:bridge": "npx tsx src/integrations/ledger/serve.ts",
"ledger:ui": "npx vite src/integrations/ledger/ui",
"safe:deploy": "npx tsx src/integrations/safe/deploy.ts"
},
"keywords": [
"0g",
"uniswap",
"ledger",
"safe",
"elizaos",
"ai-agents"
],
"license": "MIT",
"dependencies": {
"@0gfoundation/0g-ts-sdk": "latest",
"@0glabs/0g-serving-broker": "latest",
"@ledgerhq/context-module": "^1.15.0",
"@ledgerhq/device-management-kit": "^1.2.0",
"@ledgerhq/device-signer-kit-ethereum": "^1.13.0",
"@ledgerhq/device-transport-kit-web-ble": "^1.3.2",
"@safe-global/api-kit": "^4.1.0",
"@safe-global/protocol-kit": "^7.0.0",
"@safe-global/types-kit": "^3.1.0",
"dotenv": "^17.4.0",
"ethers": "^6.16.0",
"express": "^5.2.1",
"groq-sdk": "^0.8.0",
"rxjs": "^7.8.2",
"tsx": "^4.21.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.0",
"typescript": "^6.0.2",
"vite": "^8.0.3"
}
}