scripts/dogfood-report.ts drives the real @commitea/core engine (schedule + capacity-aware Monte Carlo forecast + per-milestone runway) against the live christian/commitea backlog and prints the project report each screen derives. Read-only; `yarn tsx scripts/dogfood-report.ts`. Adds tsx as a devDependency. First run surfaced two real gaps the fixtures hid: every open issue was unassigned (so capacity load-balanced work onto the slow half-time lane and the standup plan-per-person was empty) and no milestone had a due date (so Runway couldn't judge on-track/at-risk). Both were fixed as PM actions on the repo via the write path — all open issues assigned, milestone due dates synthesized from the forecast — so the app's own numbers are now honest. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@commitea/desktop",
|
|
"version": "0.1.0",
|
|
"description": "CommiTea — an AI project manager for Gitea",
|
|
"author": "CommiTea",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./out/main/index.js",
|
|
"scripts": {
|
|
"dev": "electron-vite dev 2>&1 | tee desktop.log",
|
|
"build": "electron-vite build",
|
|
"start": "electron-vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"e2e": "electron-vite build && playwright test",
|
|
"e2e:only": "playwright test",
|
|
"e2e:report": "playwright show-report e2e/.artifacts/report",
|
|
"pack": "electron-vite build && electron-builder --dir",
|
|
"dist": "electron-vite build && electron-builder --mac"
|
|
},
|
|
"dependencies": {
|
|
"@commitea/core": "workspace:*",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.61.1",
|
|
"@types/node": "^22.13.1",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"autoprefixer": "^10.4.20",
|
|
"electron": "^34.0.0",
|
|
"electron-builder": "^25",
|
|
"electron-vite": "^3.1.0",
|
|
"postcss": "^8.5.1",
|
|
"tailwindcss": "^3.4.17",
|
|
"tsx": "^4",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.1.0"
|
|
}
|
|
}
|