d6cf5f3d36
- bun workspaces: contract/ (Schemas = source of truth: config raw↔resolved,
domain DTOs, HttpApi contract, API errors) + plugin/ + ui/
- pure domain moved src/{engine,art}→plugin/src/{domain,art}, types now
imported from @rom-manager/contract and @punktfunk/plugin-kit/wire (the
hand-copied wire.ts dies), loggers injected instead of module-global
- ui.* and devEntry dropped from the config shape (standalone server is
gone; stale keys tolerated on decode, dropped by the next save)
- all 48 domain tests ported and green BEFORE any Effect wiring
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
425 B
JSON
16 lines
425 B
JSON
{
|
|
"name": "rom-manager-workspace",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": ["contract", "plugin", "ui"],
|
|
"scripts": {
|
|
"typecheck": "cd contract && bun run typecheck && cd ../plugin && bun run typecheck && cd ../ui && bun run typecheck",
|
|
"test": "cd plugin && bun test",
|
|
"build": "cd plugin && bun run build:all",
|
|
"check": "bunx biome check ."
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.5.2"
|
|
}
|
|
}
|