-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 920 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
{
"name": "canarycode",
"version": "0.3.1",
"description": "A fast, minimal terminal coding agent (Bun + OpenTUI)",
"license": "PolyForm-Noncommercial-1.0.0",
"type": "module",
"bin": {
"canarycode": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"canarycode": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"check": "biome check ./src && tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.202",
"@canarycoders/canaryllm": "^0.1.0",
"@opentui/core": "^0.4.1",
"@opentui/react": "^0.4.1",
"react": "^19.2.0",
"shiki": "^4.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "latest",
"@types/react": "^19.2.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5"
}
}