agora-ai/backend/package.json
Muyue 04e6c062a5 Add full-stack implementation with Vue.js frontend and Node.js backend
- Add MIT License
- Create frontend with Vue 3 + Vite + Pinia
  - PromptInput component for project description
  - DebateThread component for displaying AI discussions
  - Debate store for state management
- Create backend with Express + WebSocket + SQLite
  - REST API for debate management
  - Database schema for debates and responses
  - Orchestrator service for AI agent coordination
- Update .gitignore for environment files and dependencies
2025-10-17 11:37:59 +02:00

29 lines
672 B
JSON

{
"name": "agora-ai-backend",
"version": "1.0.0",
"description": "Backend orchestration for Project Agora multi-agent AI system",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ai",
"multi-agent",
"orchestration"
],
"author": "Augustin ROUX (Muyue)",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.4.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"ws": "^8.18.3"
}
}