MicroFish/package.json

23 lines
703 B
JSON

{
"name": "mirofish",
"version": "0.1.0",
"description": "MiroFish - 简洁通用的群体智能引擎,预测万物",
"scripts": {
"setup": "bun install && cd frontend && bun install",
"setup:backend": "cd backend && uv sync",
"setup:all": "bun run setup && bun run setup:backend",
"dev": "concurrently --kill-others -n \"backend,frontend\" -c \"green,cyan\" \"bun run backend\" \"bun run frontend\"",
"backend": "cd backend && uv run python run.py",
"frontend": "cd frontend && bun run dev",
"build": "cd frontend && bun run build"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"license": "AGPL-3.0"
}