Files
copilotkit__copilotkit/examples/v1/research-canvas/package.json
Jordan Ritter ac66995bf8 fix: bump all 15.x examples to Next 15.5.15 (security patches)
24 examples bumped from various 15.0-15.4 versions to 15.5.15.
chat-with-your-data bumped from 15.6.0-canary to 16.1.7.
next-openai: moved OpenAI client init into handlers (15.5 evaluates
edge routes at build time).

Remaining on 14.x: next-pages-router(v1), state-machine, travel,
banking, enterprise-brex, presentation, todo — require major rewrite.
2026-04-28 10:33:06 -07:00

51 lines
1.4 KiB
JSON

{
"name": "@copilotkit-examples/research-canvas",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev": "concurrently -k -n ui,agent -c blue,red \"PORT=3000 npm run dev:ui\" \"PORT=8000 npm run dev:agent\"",
"dev:ui": "next dev",
"dev:agent": "npm run dev:agent:py",
"dev:agent:py": "cd agents/python && uv run main.py",
"install:agent:py": "cd agents/python && uv sync",
"install:agent:ts": "cd agents/typescript && pnpm i"
},
"dependencies": {
"@copilotkit/react-core": "workspace:*",
"@copilotkit/react-ui": "workspace:*",
"@copilotkit/runtime": "workspace:*",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.451.0",
"next": "15.5.15",
"openai": "^4.85.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"concurrently": "^8.2.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"nx": {
"targets": {
"build": {
"cache": false
}
}
}
}