mirror of
https://github.com/cdr/code-server.git
synced 2026-01-25 01:22:58 +01:00
This commit introduces a comprehensive full-stack AI IDE. It includes: - **Backend**: Claudable service with AI provider integrations (OpenAI, Anthropic, Google, Mistral), WebSocket communication, and a robust tool system for file operations, Git, terminal commands, and more. - **Frontend**: React-based UI with a Cursor-like design, Monaco editor, real-time chat, and an interactive tool panel. - **Infrastructure**: Dockerization for easy deployment with Docker Compose. The system supports real-time chat, code execution, and AI-assisted development workflows. Co-authored-by: logato7838 <logato7838@vsihay.com>
36 lines
No EOL
899 B
JSON
36 lines
No EOL
899 B
JSON
{
|
|
"name": "cursor-fullstack-ai-ide",
|
|
"version": "1.0.0",
|
|
"description": "Complete full-stack AI-powered IDE similar to Cursor Web",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "docker compose up --build -d",
|
|
"start": "docker compose up -d",
|
|
"stop": "docker compose down",
|
|
"logs": "docker compose logs -f",
|
|
"test": "node test-system.js",
|
|
"dev:backend": "cd packages/backend/claudable && bun run dev",
|
|
"dev:frontend": "cd packages/frontend/cursor-web && bun run dev",
|
|
"clean": "docker compose down -v && docker system prune -f"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"ide",
|
|
"cursor",
|
|
"fullstack",
|
|
"react",
|
|
"node",
|
|
"websocket",
|
|
"monaco-editor",
|
|
"docker"
|
|
],
|
|
"author": "Cursor Full Stack AI IDE",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"axios": "^1.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"docker": ">=20.0.0"
|
|
}
|
|
} |