-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "dubsbot",
"version": "0.1.0",
"packageManager": "pnpm@10.30.1",
"description": "Model-agnostic local coding agent CLI",
"type": "module",
"bin": {
"dubsbot": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"dev:daemon": "tsx src/daemon/main.ts",
"build": "tsup src/index.ts src/daemon/main.ts --format esm,cjs --dts --out-dir dist --clean",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"checks": "pnpm test && pnpm typecheck && pnpm lint && pnpm build",
"db:migrate": "tsx src/db/migrate-cli.ts",
"lint": "biome check .",
"format": "biome format --write .",
"lint:fix": "biome check --write ."
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.53",
"@ai-sdk/google": "^3.0.36",
"@ai-sdk/openai": "^3.0.39",
"@electric-sql/pglite": "^0.3.15",
"ai": "^6.0.108",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"ink": "^6.8.0",
"ink-text-input": "^6.0.0",
"node-cron": "^4.2.1",
"react": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}