mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
2cbc38b18c
Mounts the framework-agnostic cpk-web-inspector web component (dev aid for watching AG-UI events / agent state / runtime connectivity), handing it the shared CopilotKit.core. Mirrors the internal examples/v2/angular/demo pattern — @copilotkit/angular does not integrate the inspector via the provider the way React's <CopilotKit inspectorDefaultAnchor> does. Matches the richer React integration examples (langgraph-python et al.); a deliberate extra vs. the leaner adk reference. - add @copilotkit/web-inspector@1.63.1 - src/app/web-inspector.ts + <app-web-inspector /> in app.ts - README file map updated ng build green; oxlint 0/0.
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "adk-angular-starter",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:ui\" \"npm run dev:runtime\" \"npm run dev:agent\" --names ui,runtime,agent --prefix-colors blue,magenta,green --kill-others",
|
|
"dev:debug": "LOG_LEVEL=debug npm run dev",
|
|
"dev:ui": "ng serve",
|
|
"dev:runtime": "tsx server.ts",
|
|
"dev:agent": "./scripts/run-agent.sh || scripts\\run-agent.bat",
|
|
"build": "ng build",
|
|
"start": "ng serve",
|
|
"install:agent": "./scripts/setup-agent.sh || scripts\\setup-agent.bat",
|
|
"postinstall": "npm run install:agent"
|
|
},
|
|
"dependencies": {
|
|
"@ag-ui/client": "0.0.57",
|
|
"@ag-ui/core": "0.0.57",
|
|
"@angular/cdk": "^21.2.13",
|
|
"@angular/common": "^21.2.15",
|
|
"@angular/compiler": "^21.2.15",
|
|
"@angular/core": "^21.2.15",
|
|
"@angular/platform-browser": "^21.2.15",
|
|
"@copilotkit/angular": "0.2.0",
|
|
"@copilotkit/core": "1.63.1",
|
|
"@copilotkit/runtime": "1.63.1",
|
|
"@copilotkit/shared": "1.63.1",
|
|
"@copilotkit/web-inspector": "1.63.1",
|
|
"dotenv": "^16.4.5",
|
|
"lucide-angular": "^0.577.0",
|
|
"rxjs": "^7.8.1",
|
|
"tslib": "^2.6.0",
|
|
"zod": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular/build": "^21.2.13",
|
|
"@angular/cli": "^21.2.13",
|
|
"@angular/compiler-cli": "^21.2.15",
|
|
"@types/node": "^20",
|
|
"concurrently": "^9.1.2",
|
|
"tsx": "^4",
|
|
"typescript": "~5.9.0"
|
|
},
|
|
"overrides": {
|
|
"@ag-ui/client": "0.0.57",
|
|
"@ag-ui/core": "0.0.57",
|
|
"@ag-ui/encoder": "0.0.57",
|
|
"@ag-ui/proto": "0.0.57",
|
|
"lucide-angular": "^0.577.0"
|
|
}
|
|
}
|