code-server/cursor-fullstack/packages/backend/claudable/package.json
Cursor Agent 05acbfff1e feat: Set up fullstack Cursor IDE with backend and frontend
Co-authored-by: logato7838 <logato7838@vsihay.com>
2025-10-12 12:22:34 +00:00

27 lines
No EOL
683 B
JSON

{
"name": "cursor-backend",
"version": "1.0.0",
"description": "Cursor Full Stack AI IDE Backend",
"main": "src/index.ts",
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun run dist/index.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@google/generative-ai": "^0.2.1",
"bun-types": "latest",
"cors": "^2.8.5",
"express": "^4.18.2",
"openai": "^4.20.1",
"socket.io": "^4.7.4",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10"
}
}