-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "squad-code",
"version": "1.1.0",
"description": "Provider-neutral local-first CLI agent: streaming, tool use, sessions, permissions across DeepSeek, OpenAI, and Anthropic.",
"license": "MIT",
"author": "Cid",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx watch bin/squad.ts",
"build": "tsc && node scripts/copy-assets.mjs",
"build:watch": "tsc --watch --preserveWatchOutput",
"prepare": "tsc && node scripts/copy-assets.mjs",
"start": "node dist/bin/squad.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"bin": {
"squad": "./dist/bin/squad.js",
"squadcode": "./dist/bin/squad.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.93.0",
"better-sqlite3": "^11.7.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"openai": "^4.79.0",
"pino": "^9.6.0",
"pino-roll": "^3.0.0",
"react": "^18.3.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^18.3.12",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}