-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1008 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1008 Bytes
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
{
"name": "coding-agent",
"version": "0.1.0",
"type": "module",
"workspaces": [
"packages/infra",
"packages/codingcode",
"packages/tui"
],
"scripts": {
"start": "tsx packages/codingcode/src/cli.ts",
"dev": "tsx --watch packages/codingcode/src/cli.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"debug": "tsx src/debug.ts"
},
"dependencies": {
"@ai-sdk/deepseek": "^2.0.35",
"@ai-sdk/openai": "^3.0.63",
"@hono/node-server": "^2.0.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/react": "^19.2.14",
"ai": "^6.0.180",
"effect": "^3.21.2",
"globby": "^14.1.0",
"hono": "^4.12.19",
"ink": "^7.0.3",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"react": "^19.2.6",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
}
}