-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.72 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.72 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
{
"name": "ode",
"version": "0.0.88",
"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 run packages/core/index.ts --local",
"web:dev": "sh -c 'bun --watch run packages/core/index.ts --local & bun --cwd packages/web-ui run 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",
"@supabase/supabase-js": "^2.90.1",
"discord.js": "^14.25.1",
"elysia": "^1.4.25",
"ioredis": "^5.9.2",
"pino": "^10.1.1",
"pino-pretty": "^13.1.3",
"zod": "^4.3.5"
}
}