mirror of
https://github.com/cdr/code-server.git
synced 2025-12-15 21:03:15 +01:00
27 lines
No EOL
683 B
JSON
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"
|
|
}
|
|
} |