mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
654389aa9e
The 1.62.3 release publishes the CopilotThreadsDrawer redesign (web-components + react-core wrapper) and the stateless /suggest feature. Bump the 15 integration examples that consume the drawer from 1.62.2 -> 1.62.3 (package.json + lockfiles) so they pick up the released packages alongside this branch's example CSS. Validated: langgraph-js runs on the published 1.62.3 (no local links) — the redesigned drawer renders (New Conversation, Recent Conversations, filter funnel, desktop collapse toggle, per-row kebab), threads are licensed, and a real agent message round-trips.
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"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.57",
|
|
"@ag-ui/core": "0.0.57",
|
|
"@copilotkit/react-core": "1.62.3",
|
|
"@copilotkit/runtime": "1.62.3",
|
|
"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.57",
|
|
"@ag-ui/core": "0.0.57"
|
|
}
|
|
}
|