-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nexusmind",
"private": true,
"version": "0.1.0",
"description": "NexusMind - 基于社会世界模型的多智能体舆情推演与决策辅助系统",
"license": "AGPL-3.0",
"scripts": {
"setup": "npm install && npm run setup:frontend",
"setup:frontend": "npm --prefix frontend install",
"setup:backend": "cd backend && uv sync",
"setup:all": "npm run setup:frontend && npm run setup:backend",
"dev": "concurrently --kill-others --names backend,frontend --prefix-colors green,cyan \"npm run backend\" \"npm run frontend\"",
"backend": "cd backend && uv run python run.py",
"frontend": "npm --prefix frontend run dev",
"build": "npm --prefix frontend run build"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}