2026-04-05 22:44:45 -05:00
|
|
|
{
|
|
|
|
|
"name": "@trustgraph/workbench",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc && vite build",
|
2026-06-01 16:22:25 -05:00
|
|
|
"preview": "vite preview",
|
feat(ts): add real quality gates — Biome lint + effect-law ratchet + class inventory
- biome.json (2.4.16, linter-only) wired as "lint" in all six packages
- scripts/check-effect-laws.ts: Effect-native law enforcement encoding the
adapted beep-effect effect-first/schema-first laws (no native JSON/switch/
sort/fetch/timers, no process.env, no throw new, no Effect.run* outside
boundaries, no Schema-suffixed constants, no node:fs/path, AST-based
pure-data interface detection per law 38/39)
- ratcheting baseline allowlist (95 entries / 290 findings) that must shrink
to documented exemptions only; stale counts fail the gate
- root lint chains turbo lint + law check + native-class inventory
- fix all 163 initial Biome findings: import-type style, templates, two `any`s,
ten non-null assertions (librarian getService gate, A.matchRight in atoms,
ensureNode returning nodes, main.tsx mount guard)
Gates: lint, check:tsgo, build, test (force, 11 tasks) all green.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-11 06:40:01 -05:00
|
|
|
"qa:browser": "playwright test",
|
|
|
|
|
"lint": "bunx --bun biome check src"
|
2026-04-05 22:44:45 -05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-06-06 10:33:10 -05:00
|
|
|
"@effect/atom-react": "4.0.0-beta.78",
|
|
|
|
|
"@effect/platform-browser": "4.0.0-beta.78",
|
2026-04-05 22:44:45 -05:00
|
|
|
"@trustgraph/client": "workspace:*",
|
|
|
|
|
"clsx": "^2.1.0",
|
2026-06-11 06:29:29 -05:00
|
|
|
"effect": "4.0.0-beta.78",
|
2026-04-05 22:44:45 -05:00
|
|
|
"lucide-react": "^0.513.0",
|
|
|
|
|
"react": "^19.1.0",
|
|
|
|
|
"react-dom": "^19.1.0",
|
2026-06-01 20:26:47 -05:00
|
|
|
"react-error-boundary": "^6.1.2",
|
2026-04-05 22:44:45 -05:00
|
|
|
"react-force-graph-2d": "^1.29.1",
|
|
|
|
|
"react-markdown": "^10.1.0",
|
|
|
|
|
"react-router": "^7.6.0",
|
2026-06-11 06:29:29 -05:00
|
|
|
"tailwind-merge": "^3.3.0"
|
2026-04-05 22:44:45 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-06-06 10:33:10 -05:00
|
|
|
"@effect/vitest": "4.0.0-beta.78",
|
2026-06-01 16:22:25 -05:00
|
|
|
"@playwright/test": "^1.57.0",
|
2026-04-05 22:44:45 -05:00
|
|
|
"@tailwindcss/vite": "^4.1.0",
|
|
|
|
|
"@types/react": "^19.1.0",
|
|
|
|
|
"@types/react-dom": "^19.1.0",
|
|
|
|
|
"@vitejs/plugin-react": "^4.5.0",
|
|
|
|
|
"tailwindcss": "^4.1.0",
|
|
|
|
|
"typescript": "^5.8.0",
|
|
|
|
|
"vite": "^6.3.0"
|
|
|
|
|
}
|
|
|
|
|
}
|