- 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
29 lines
672 B
JSON
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"
|
|
}
|
|
}
|