ruvector/examples/rvf/dashboard/package.json
rUv 265d6cb1b0 feat(rvf): add Causal Atlas dashboard, solver fixes, and desktop app
ADR-040 Causal Atlas implementation with full Three.js dashboard:
- Planet detection, life candidate scoring, Dyson sphere 3D views
- WASM solver with fixed acceptance test (evaluate-before-train,
  conservative Thompson sampling, non-contradictory noise injection)
- wry-based desktop app embedding the full dashboard (1.6 MB binary)
- WebSocket live updates, docs view, download page, status dashboard
- 10/10 seed acceptance pass rate (was ~40% before fixes)

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-02-20 18:01:09 +00:00

28 lines
676 B
JSON

{
"name": "rvf-causal-atlas-dashboard",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"three": "^0.170.0",
"d3-scale": "^4.0.0",
"d3-axis": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-selection": "^3.0.0",
"@ruvector/rvf-solver": "file:../../../npm/packages/rvf-solver"
},
"devDependencies": {
"typescript": "^5.7.0",
"vite": "^6.0.0",
"@types/three": "^0.170.0",
"@types/d3-scale": "^4.0.0",
"@types/d3-axis": "^3.0.0",
"@types/d3-shape": "^3.0.0",
"@types/d3-selection": "^3.0.0"
}
}