- 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
23 lines
422 B
JSON
23 lines
422 B
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "^13.9.0",
|
|
"mermaid": "^11.12.0",
|
|
"pinia": "^3.0.3",
|
|
"radix-vue": "^1.9.17",
|
|
"vue": "^3.5.22"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.1.7"
|
|
}
|
|
}
|