forked from CopilotKit/CopilotKit
-
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.5 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.5 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": "a2a-agui-starter",
"version": "0.1.0",
"private": true,
"description": "Minimal starter template for building multi-agent applications with A2A Protocol and AG-UI",
"scripts": {
"dev": "concurrently --names \"UI,Orch,Research,Analysis\" --prefix-colors \"cyan,gray,green,blue\" \"npm run dev:ui\" \"npm run dev:orchestrator\" \"npm run dev:research\" \"npm run dev:analysis\"",
"dev:ui": "next dev --turbopack",
"dev:orchestrator": "agents/.venv/bin/python agents/orchestrator.py",
"dev:research": "agents/.venv/bin/python agents/research_agent.py",
"dev:analysis": "agents/.venv/bin/python agents/analysis_agent.py",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@a2a-js/sdk": "latest",
"@ag-ui/a2a-middleware": "0.0.2",
"@ag-ui/client": "0.0.53",
"@ag-ui/core": "0.0.53",
"@copilotkit/react-core": "1.59.5",
"@copilotkit/runtime": "1.59.5",
"hono": "^4",
"lucide-react": "^0.577.0",
"next": "15.5.15",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"postcss": "^8",
"tailwindcss": "^4.1.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"overrides": {
"@ag-ui/client": "0.0.53",
"@ag-ui/core": "0.0.53"
}
}