Initialize project with version 0.1.0 and update package configurations
- Created package-lock.json for dependency management. - Updated package.json and frontend package.json to version 0.1.0. - Adjusted backend pyproject.toml to reflect version 0.1.0. - Introduced uv.lock for Python dependency resolution.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "mirofish",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"description": "MiroFish - 简洁通用的群体智能引擎,预测万物",
|
||||
"scripts": {
|
||||
"setup": "npm install && cd frontend && npm install",
|
||||
"setup:backend": "cd backend && uv venv --clear && uv pip install -r requirements.txt",
|
||||
"setup:backend": "cd backend && uv sync",
|
||||
"setup:all": "npm run setup && npm run setup:backend",
|
||||
"dev": "concurrently -n \"backend,frontend\" -c \"yellow,cyan\" \"npm run backend\" \"npm run frontend\"",
|
||||
"backend": "cd backend && uv run python run.py",
|
||||
|
||||
Reference in New Issue
Block a user