d830b7133d
Live-verified against a running host: status frames (including a syncing transition) now stream through the plugin UI server. The previous keepalive outlived Bun's default idle timeout, so an idle feed was closed before its first ping. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
26 lines
694 B
JSON
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.4"
|
|
},
|
|
"devDependencies": {
|
|
"effect": "4.0.0-beta.99",
|
|
"@punktfunk/plugin-kit": "^0.1.4",
|
|
"typescript": "^5.9.3",
|
|
"@types/bun": "^1.3.0"
|
|
}
|
|
}
|