f33a563003
- Add ToolManifest Pydantic models with validators for ports, mounts, health checks, and traefik config - Implement in-memory ToolRegistry with YAML loading and built-in manifest scanning - Add FastAPI CRUD routes for listing, retrieving, and creating tool manifests - Include built-in manifests for runfusion and code-server - Harden web Dockerfile with unprivileged nginx and port 8080 - Add tool manifest specification documentation and architecture updates Fusion-Task-Id: FN-003
24 lines
865 B
JSON
24 lines
865 B
JSON
{
|
|
"name": "headquarter",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Hosted workspace and tool-orchestration platform",
|
|
"scripts": {
|
|
"lint": "pnpm --filter @headquarter/web lint && pnpm --filter @headquarter/api lint",
|
|
"test": "pnpm --filter @headquarter/web test && pnpm --filter @headquarter/api test",
|
|
"typecheck": "pnpm --filter @headquarter/web typecheck && pnpm --filter @headquarter/api typecheck",
|
|
"build": "pnpm --filter @headquarter/web build && pnpm --filter @headquarter/api build",
|
|
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev",
|
|
"compose:up": "docker compose up --build -d",
|
|
"compose:down": "docker compose down"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": ["esbuild"]
|
|
},
|
|
"packageManager": "pnpm@11.1.1",
|
|
"engines": {
|
|
"node": ">=20",
|
|
"pnpm": ">=9"
|
|
}
|
|
}
|