- P0-8: 决策交互卡片(飞书卡片+回调+4种模板) - P0-10: 执行记录REST API(Hono框架+统计接口) - P0-11: 创建流程串联(向导→章程→任务→看板→通知) - P0-12: GitHub Actions CI/CD - P0-14: Dockerfile + docker-compose部署 - 前端入口+Vite配置+项目结构完善 - CHANGELOG + PROGRESS更新
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "flowpilot",
|
|
"version": "0.5.0",
|
|
"description": "FlowPilot - AI-driven project management flow engine",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
|
|
"dev:server": "tsx watch src/server/main.ts",
|
|
"dev:client": "vite",
|
|
"build": "tsc && vite build",
|
|
"lint": "eslint src/ --ext .ts,.tsx",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@arco-design/web-react": "^2.67.0",
|
|
"@larksuiteoapi/node-sdk": "^0.6.0",
|
|
"hono": "^4.7.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"concurrently": "^9.0.0",
|
|
"eslint": "^9.0.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|