Bumps every @wrnexus package 0.8.4 -> 0.8.5 and adds the matching update migration. The migration is documentation only: moving off <Table> to <DataTable> and off the @wrnexus/ui main entry to @wrnexus/ui/registry are source changes no codemod can make safely. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
42 lines
972 B
JSON
42 lines
972 B
JSON
{
|
|
"name": "@wrnexus/realtime",
|
|
"version": "0.8.5",
|
|
"description": "Typed realtime rooms, message helpers, presence utilities, package UI blocks, and WRNexusJS integration.",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"files": [
|
|
"src",
|
|
"components",
|
|
"README.md"
|
|
],
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./plugin": "./src/plugin.ts",
|
|
"./components/*": "./components/*"
|
|
},
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit",
|
|
"check": "bun run typecheck && bun run test"
|
|
},
|
|
"dependencies": {
|
|
"@wrnexus/core": "workspace:*",
|
|
"@wrnexus/plugin": "workspace:*",
|
|
"@wrnexus/ui": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.14",
|
|
"@wrnexus/syntax": "workspace:*",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"wrnexus": {
|
|
"plugin": {
|
|
"plugin": "./src/plugin.ts",
|
|
"export": "default",
|
|
"factory": true
|
|
}
|
|
}
|
|
}
|