Files
punktfunk-plugin-rom-manager/contract/package.json
enricobuehler 838cdc4339
CI / publish (push) Failing after 22s
CI / build (push) Successful in 35s
fix(ui): inherit the theme collision fixes from plugin-kit 0.1.3
The text-secondary re-point moved into the kit's theme.css (every plugin hits
it), joined there by the card-ring softening the console does in its own Card
wrapper. The SPA's stylesheet is back to imports only.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-20 19:50:00 +02:00

26 lines
694 B
JSON

{
"name": "@rom-manager/contract",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "The single source of truth shared by the plugin server and the UI: config schema, domain DTOs, the HttpApi contract, and API errors. Never published — bundled into the plugin, aliased into the UI.",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"effect": "^4.0.0-beta.99",
"@punktfunk/plugin-kit": "^0.1.3"
},
"devDependencies": {
"effect": "4.0.0-beta.99",
"@punktfunk/plugin-kit": "^0.1.3",
"typescript": "^5.9.3",
"@types/bun": "^1.3.0"
}
}