-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 4.21 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 4.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"name": "bitcode-monorepo",
"version": "0.0.0",
"engines": {
"node": ">=21"
},
"workspaces": [
"packages/*",
"packages/generic-tools/*",
"packages/generic-agents/*",
"packages/pipelines/*",
"uapi",
"admin"
],
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-bitcode": "workspace:*",
"eslint-plugin-react-hooks": "^7.1.1",
"playwright": "^1.31.0",
"typescript": "^5.8.3"
},
"pnpm": {
"overrides": {
"caniuse-lite": "1.0.30001792",
"canvas": "npm:@napi-rs/canvas@^0.1.53"
}
},
"scripts": {
"docs:refresh": "npm --prefix packages/executions-mcp/src/mcp-server run docs:generate && npm --prefix packages/executions-mcp/src/mcp-server run docs:openapi",
"verify:ui": "node scripts/verify-ui-ssot.mjs",
"generate:proven": "node scripts/generate-bitcode-proven.mjs",
"promote:canon": "node scripts/promote-bitcode-canon.mjs",
"check:canonical-inputs": "node scripts/check-bitcode-canonical-inputs.mjs",
"check:canon-posture-drift": "node scripts/check-bitcode-canon-posture-drift.mjs",
"check:spec-family": "node scripts/check-bitcode-spec-family.mjs",
"check:spec-quality": "node scripts/run-bitcode-spec-quality.mjs --mode basic",
"check:spec-quality:title": "node scripts/run-bitcode-spec-quality.mjs --mode strict-from-title",
"check:spec-quality:v24": "node scripts/run-bitcode-spec-quality.mjs --mode strict-version --version V24",
"check:proven": "node scripts/generate-bitcode-proven.mjs --check",
"hooks:install": "node scripts/setup-bitcode-git-hooks.mjs",
"prelint": "pnpm run build:eslint-plugin",
"count-lines": "bash scripts/count_codebase_lines.sh",
"audit:stories": "node scripts/audit_stories.js",
"check:prompts": "node scripts/generate_prompt_inventory.js --ci",
"lint": "eslint packages --ext .ts,.tsx",
"typecheck:core": "pnpm -C packages/execution-generics run typecheck && pnpm -C packages/pipelines-generics run typecheck && pnpm -C packages/agent-generics run typecheck && pnpm -C packages/streams run typecheck",
"lint:core": "pnpm exec eslint packages/execution-generics packages/pipelines-generics packages/agent-generics/src packages/streams/src --ext .ts,.tsx",
"lint:agents": "eslint packages/generic-agents packages/pipelines/asset-pack/src/agents --ext .ts",
"prelint:agents": "pnpm run build:eslint-plugin",
"lint:fix": "eslint packages --ext .ts,.tsx --fix",
"test": "pnpm -r test",
"build:eslint-plugin": "pnpm -C packages/eslint-plugin-bitcode run build",
"tail:local": "node ./scripts/tail-logs.js --env local",
"tail:staging": "node ./scripts/tail-logs.js --env staging",
"tail:production": "node ./scripts/tail-logs.js --env production",
"tail:run": "node ./scripts/tail-run.js",
"tail:request": "node ./scripts/tail-request.js",
"list:traces": "node ./scripts/trace-sidecars.js",
"db:reset": "bash scripts/supabase.sh db:reset",
"db:dump": "bash scripts/supabase.sh db:dump -f supabase/migrations/000_squashed.sql",
"db:gen:types": "bash scripts/supabase.sh gen:types",
"db:codegen": "bash scripts/supabase.sh codegen:db",
"db:data-health": "pnpm -C packages/orm run data-health",
"db:data-health:ci": "pnpm -C packages/orm run data-health:ci",
"db:data-health:daily": "pnpm -C packages/orm run data-health:daily",
"db:data-health:qa": "pnpm -C packages/orm run data-health:qa",
"db:schema-types:check": "pnpm -C packages/orm run schema-types:check",
"db:schema-types:refresh": "pnpm -C packages/orm run schema-types:refresh",
"db:squash": "bash scripts/db-squash.sh",
"render:prompts": "pnpm -C packages/pipelines/asset-pack exec ts-node --transpile-only scripts/render-prompts.ts",
"render:prompts:all": "pnpm -C packages/pipelines/asset-pack exec ts-node --transpile-only scripts/render-prompts.ts --scope=all",
"mcp:inspect": "pnpm exec mcp-inspector --stdio-command ./scripts/start-bitcode-mcp.sh"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.10.0",
"clsx": "2.1.1",
"tailwind-merge": "2.5.2"
}
}