-
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 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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": "multiagent-terminal",
"version": "1.0.0",
"description": "Blazing-fast multi-agent terminal code assistant",
"type": "module",
"main": "dist/main.js",
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc",
"test": "vitest",
"start": "node dist/main.js"
},
"keywords": [
"ai",
"terminal",
"agent",
"typescript"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "latest",
"chokidar": "^3.6.0",
"dotenv": "^16.0.0",
"execa": "^8.0.0",
"glob": "^10.0.0",
"ink": "^5.0.0",
"lru-cache": "^10.0.0",
"p-queue": "^8.0.0",
"p-retry": "^6.0.0",
"react": "^18.0.0",
"ripgrep-js": "^1.0.0",
"tree-sitter": "^0.21.1",
"tree-sitter-typescript": "^0.23.2",
"winston": "^3.11.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^1.0.0"
}
}