agent-orchestrator/package.json

16 lines
656 B
JSON

{
"name": "agent-orchestrator",
"private": true,
"scripts": {
"lint": "cd backend && go test ./... && go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.12.2 run --path-mode=abs",
"frontend:typecheck": "npm --prefix frontend run typecheck",
"sqlc": "cd backend && go run github.com/sqlc-dev/sqlc/cmd/sqlc@v1.31.1 generate",
"api:spec": "cd backend && go generate ./internal/httpd/apispec/...",
"api:ts": "openapi-typescript backend/internal/httpd/apispec/openapi.yaml -o frontend/src/api/schema.ts",
"api": "npm run api:spec && npm run api:ts"
},
"devDependencies": {
"openapi-typescript": "7.4.4"
}
}