Files
2026-07-13 12:58:18 +08: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
}
}
}
}