mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
8c8c563389
Aligned everything to npm to match what the Dockerfile already uses (`npm ci --legacy-peer-deps`) and the committed `package-lock.json`. The sibling `ms-agent-dotnet` integration uses the same npm-based setup, so npm is the established convention. Changes: - playwright.config.ts: webServer.command now `npm run dev` (was `pnpm dev`), so local E2E works in environments without pnpm installed. - package.json: removed the redundant top-level `pnpm.overrides` block. The equivalent override is already declared under npm's `overrides` field, so the pnpm block was dead weight given that npm is canonical. - package.json: `scripts.dev` now uses `concurrently -k --success first` so a crashing .NET agent surfaces during local dev instead of leaving Next running headlessly.
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@copilotkit/showcase-ms-agent-harness-dotnet",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently -k --success first \"next dev --turbopack\" \"dotnet run --project agent --urls http://localhost:8000\"",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"@ag-ui/client": "^0.0.53",
|
|
"@copilotkit/a2ui-renderer": "1.57.2",
|
|
"@copilotkit/react-core": "1.57.2",
|
|
"@copilotkit/runtime": "1.57.2",
|
|
"@copilotkit/voice": "1.57.2",
|
|
"@hashbrownai/core": "0.5.0-beta.4",
|
|
"@hashbrownai/react": "0.5.0-beta.4",
|
|
"@json-render/core": "0.18.0",
|
|
"@json-render/react": "0.18.0",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^1.14.0",
|
|
"next": "^15.5.15",
|
|
"openai": "^5.9.0",
|
|
"radix-ui": "^1.4.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-markdown": "^10.1.0",
|
|
"recharts": "^2.15.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"tailwind-merge": "^3.6.0",
|
|
"yaml": "^2.8.4",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.60.0",
|
|
"@tailwindcss/postcss": "^4.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"concurrently": "^9.1.0",
|
|
"postcss": "^8.5.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"overrides": {
|
|
"@copilotkit/web-inspector": {
|
|
"@copilotkit/core": "1.57.2"
|
|
}
|
|
}
|
|
}
|