forked from TraderAlice/OpenAlice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "open-alice",
"version": "0.9.0-beta.5",
"description": "File-based trading agent engine",
"type": "module",
"scripts": {
"dev": "tsx src/main.ts",
"dev:ui": "pnpm --filter open-alice-ui dev",
"predev": "pnpm --filter opentypebb build",
"build": "pnpm --filter opentypebb build && pnpm build:ui && pnpm build:backend",
"build:ui": "pnpm --filter open-alice-ui build",
"build:backend": "tsup src/main.ts --format esm --dts",
"start": "node dist/main.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"trading",
"ai-agent",
"crypto",
"securities",
"file-driven"
],
"author": "Open Alice Contributors",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/TraderAlice/OpenAlice.git"
},
"homepage": "https://traderalice.com",
"packageManager": "pnpm@10.29.2",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.44",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/openai": "^3.0.30",
"@alpacahq/alpaca-trade-api": "^3.1.3",
"@anthropic-ai/claude-agent-sdk": "^0.2.72",
"@grammyjs/auto-retry": "^2.0.2",
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.26.0",
"@sinclair/typebox": "0.34.48",
"ai": "^6.0.86",
"ajv": "^8.18.0",
"ccxt": "^4.5.38",
"chalk": "^5.6.2",
"decimal.js": "^10.6.0",
"express": "^5.2.1",
"file-type": "^21.3.0",
"grammy": "^1.40.0",
"hono": "^4.12.7",
"json5": "^2.2.3",
"@traderalice/opentypebb": "workspace:*",
"pino": "^10.3.1",
"playwright-core": "1.58.2",
"sharp": "^0.34.5",
"tslog": "^4.10.2",
"undici": "^7.22.0",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@ai-sdk/provider": "^3.0.8",
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"@types/ws": "^8.18.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}