19 lines
648 B
JSON
19 lines
648 B
JSON
{
|
|
"name": "agent-session-manager",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "智能体观测中心 - 本地多引擎 AI 会话管理工具",
|
|
"scripts": {
|
|
"install:all": "cd backend && npm install && cd ../frontend && npm install",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev": "concurrently -n BE,FE -c cyan,green \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"start": "cd backend && npm start",
|
|
"build": "npm run build:frontend"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
}
|