mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
7012a7e07b
Canonical template at showcase/starters/template/ with Sales Dashboard hero page, 5 GenUI rendering strategies, per-language Dockerfiles (non-root user, agent health checks), and self-contained agent backends. Generation script at showcase/scripts/generate-starters.ts: - Python sys.path.insert removal + relative import rewriting - TypeScript shared-tools import rewriting - Deterministic output (sorted devDependencies, stable file ordering) - --check mode for CI drift detection - Strict error handling (throws on missing required inputs) 537 tests: generation unit tests (transform functions, entrypoint blocks), cross-starter consistency checks (270), Playwright e2e interaction tests (renderer switching, deal creation, suggestion verification).
32 lines
772 B
JSON
32 lines
772 B
JSON
{
|
|
"name": "copilotkit-showcase-{{SLUG}}",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@copilotkit/a2ui-renderer": "next",
|
|
"@copilotkit/react-core": "next",
|
|
"@copilotkit/runtime": "next",
|
|
"@hashbrownai/core": "0.5.0-beta.4",
|
|
"@hashbrownai/react": "0.5.0-beta.4",
|
|
"next": "^15.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"recharts": "^2.15.0",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"postcss": "^8.5.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|