-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 828 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 828 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
{
"name": "coder-agent",
"version": "0.1.0",
"description": "CoderAgent — A fully open-source AI programming assistant for the terminal",
"type": "module",
"bin": {
"coder": "./bin/coder.js"
},
"scripts": {
"start": "tsx src/cli/main.tsx",
"dev": "tsx --watch src/cli/main.tsx",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.102.0",
"highlight.js": "^11.11.1",
"ink": "^7.0.5",
"react": "^19.2.4",
"undici": "^7.27.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.8",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
}
}