agent-orchestrator/packages/web/package.json

44 lines
1.3 KiB
JSON

{
"name": "@agent-orchestrator/web",
"version": "0.1.0",
"description": "Web dashboard for agent-orchestrator",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf .next",
"screenshot": "tsx e2e/screenshot.ts",
"screenshot:install": "npx playwright install chromium"
},
"dependencies": {
"@agent-orchestrator/core": "workspace:*",
"@agent-orchestrator/plugin-agent-claude-code": "workspace:*",
"@agent-orchestrator/plugin-runtime-tmux": "workspace:*",
"@agent-orchestrator/plugin-scm-github": "workspace:*",
"@agent-orchestrator/plugin-tracker-github": "workspace:*",
"@agent-orchestrator/plugin-workspace-worktree": "workspace:*",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"jsdom": "^25.0.0",
"playwright": "^1.49.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}