-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "clog",
"version": "0.0.0",
"type": "module",
"private": true,
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/clog",
"apps/types",
"apps/frontends/*"
],
"scripts": {
"dev": "bun run index.ts",
"start": "bun run index.ts",
"runtime": "bun run apps/clog/src/index.ts",
"cli": "bun run apps/frontends/cli/src/index.ts",
"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 test",
"check": "bun run ci",
"update-all": "bun update --latest && bun update --latest --recursive"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"oxlint": "^1.57.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@openrouter/ai-sdk-provider": "^2.3.3",
"ai": "^6.0.138",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
}
}