-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 898 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 898 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
{
"name": "orchestrator",
"version": "0.1.0",
"description": "Terminal AI agent orchestration system",
"type": "module",
"bin": {
"orc": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"dashboard": "bun run src/index.ts dashboard",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.50",
"@ai-sdk/google": "^3.0.34",
"@ai-sdk/openai": "^3.0.37",
"@modelcontextprotocol/sdk": "^1.12.1",
"@opentui/core": "^0.1.86",
"@opentui/react": "^0.1.86",
"ai": "^6.0.105",
"jsonc-parser": "^3.3.1",
"ora": "^9.3.0",
"react": "^19.0.0",
"string-width": "^8.2.0",
"web-tree-sitter": "^0.26.6",
"yaml": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.0.0",
"react-devtools-core": "^7.0.1"
}
}