-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "clog",
"version": "0.0.0",
"type": "module",
"private": true,
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/launcher",
"apps/clog",
"apps/types",
"apps/frontends/*"
],
"scripts": {
"dev": "bun run apps/launcher/src/index.ts",
"start": "bun run apps/launcher/src/index.ts",
"launcher": "bun run apps/launcher/src/index.ts",
"runtime": "bun run apps/clog/src/index.ts",
"bundle:gce": "bun run scripts/create-gce-bundle.ts",
"tui": "bun run apps/frontends/tui/src/index.ts",
"web": "bun run --cwd apps/frontends/web dev",
"web:build": "bun run --cwd apps/frontends/web build",
"web:typecheck": "bun run --cwd apps/frontends/web typecheck",
"lint": "oxlint lint . --max-warnings=0",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bunx tsc --noEmit",
"build": "bunx --bun bun build apps/clog/src/index.ts --outdir dist --target bun",
"ci": "bun run lint && bun run typecheck && bun run web:typecheck && bun run test",
"check": "bun run ci",
"update-all": "bun update --latest && bun update --latest --recursive"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"oxlint": "^1.60.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@openrouter/ai-sdk-provider": "^2.8.0",
"ai": "^6.0.168",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.2"
}
}