mission-control/package.json

90 lines
3.0 KiB
JSON

{
"name": "mission-control",
"version": "2.0.0",
"description": "OpenClaw Mission Control — open-source agent orchestration dashboard",
"scripts": {
"verify:node": "node scripts/check-node-version.mjs",
"dev": "pnpm run verify:node && next dev --hostname 127.0.0.1 --port ${PORT:-3000}",
"build": "pnpm run verify:node && next build",
"start": "pnpm run verify:node && next start --hostname 0.0.0.0 --port ${PORT:-3000}",
"start:standalone": "pnpm run verify:node && bash scripts/start-standalone.sh",
"deploy:standalone": "pnpm run verify:node && bash scripts/deploy-standalone.sh",
"lint": "pnpm run verify:node && eslint .",
"typecheck": "pnpm run verify:node && tsc --noEmit",
"test": "pnpm run verify:node && vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "pnpm run verify:node && playwright test",
"test:e2e:openclaw:local": "pnpm run verify:node && E2E_GATEWAY_EXPECTED=0 playwright test -c playwright.openclaw.local.config.ts",
"test:e2e:openclaw:gateway": "pnpm run verify:node && E2E_GATEWAY_EXPECTED=1 playwright test -c playwright.openclaw.gateway.config.ts",
"test:e2e:openclaw": "pnpm test:e2e:openclaw:local && pnpm test:e2e:openclaw:gateway",
"test:all": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm test:e2e",
"quality:gate": "pnpm test:all"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@scalar/api-reference-react": "^0.8.66",
"@xyflow/react": "^12.10.0",
"autoprefixer": "^10.4.20",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.18.0",
"eslint-config-next": "^16.1.6",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"pino": "^10.3.1",
"postcss": "^8.5.2",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-markdown": "^10.1.0",
"reactflow": "^11.11.4",
"reagraph": "^4.30.8",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"ws": "^8.19.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.51.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^26.0.0",
"pino-pretty": "^13.1.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.5"
},
"engines": {
"node": ">=22"
},
"keywords": [
"openclaw",
"agent",
"orchestration",
"dashboard",
"nextjs"
],
"author": "Builderz Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/builderz-labs/mission-control.git"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}