-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.8 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.8 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
{
"name": "ode",
"version": "0.1.21",
"description": "Coding anywhere with your coding agents connected",
"module": "packages/core/index.ts",
"type": "module",
"private": true,
"scripts": {
"setup": "bun install --concurrent-scripts=1 --network-concurrency=8 && bun install --concurrent-scripts=1 --network-concurrency=8 --cwd packages/web-ui",
"start": "bun run packages/core/index.ts",
"dev": "bun --watch packages/core/index.ts --local",
"web:dev": "sh -c 'ODE_WEB_PORT=9293 bun --watch packages/core/index.ts --local & ODE_API_ORIGIN=http://127.0.0.1:9293 ODE_WEB_DEV_PORT=9294 bun --cwd packages/web-ui dev; kill 0'",
"postinstall": "bun install --cwd packages/web-ui",
"test:ci": "bun run setup && bun test",
"build:web": "bun --cwd packages/web-ui build && bun run embed:web",
"embed:web": "bun run scripts/embed-web-assets.ts",
"typecheck": "tsc --noEmit",
"live-status:capture": "bun run packages/live-status-harness/scripts/capture-stream.ts",
"live-status:render": "bun run packages/live-status-harness/scripts/render-status.ts",
"live-status:report": "bun run packages/live-status-harness/scripts/generate-report.ts",
"test:live-status": "bun test packages/live-status-harness/test"
},
"bin": {
"ode": "packages/core/cli.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.0.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.55.0",
"@opencode-ai/sdk": "^1.1.25",
"@slack/bolt": "^4.6.0",
"@slack/socket-mode": "^2.0.5",
"@slack/web-api": "^7.13.0",
"discord.js": "^14.25.1",
"elysia": "^1.4.25",
"ioredis": "^5.9.2",
"lru-cache": "^11.2.2",
"bottleneck": "^2.19.5",
"pino": "^10.1.1",
"pino-pretty": "^13.1.3",
"zod": "^4.3.5"
}
}