@hachej/boring-workspace 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -34
- package/dist/{FileTree-Dvaud3jU.js → FileTree-DHVB9rpk.js} +15 -15
- package/dist/{MarkdownEditor-sLkqTXDj.js → MarkdownEditor-L1KDH0bM.js} +1 -1
- package/dist/{WorkspaceLoadingState-zLzh1tGc.js → WorkspaceLoadingState-DYDxUYnx.js} +114 -110
- package/dist/WorkspaceProvider-CDPaAO5u.js +5971 -0
- package/dist/app-front.d.ts +94 -107
- package/dist/app-front.js +243 -233
- package/dist/app-server.d.ts +130 -15
- package/dist/app-server.js +1569 -304
- package/dist/{bootstrapServer-BreQ9QBc.d.ts → createInMemoryBridge-BDxDzihm.d.ts} +11 -26
- package/dist/manifest-CyNNdfYz.d.ts +58 -0
- package/dist/plugin.d.ts +199 -0
- package/dist/plugin.js +300 -0
- package/dist/server.d.ts +239 -4
- package/dist/server.js +901 -78
- package/dist/shared.d.ts +4 -112
- package/dist/surface-COYagY2m.d.ts +111 -0
- package/dist/testing.d.ts +19 -1
- package/dist/testing.js +2 -2
- package/dist/{agent-tool-DEtfQPVB.d.ts → ui-bridge-Gfh1MMgl.d.ts} +30 -30
- package/dist/workspace.css +36 -0
- package/dist/workspace.d.ts +165 -120
- package/dist/workspace.js +330 -377
- package/docs/INTERFACES.md +9 -9
- package/docs/PLUGIN_STRUCTURE.md +39 -145
- package/docs/PLUGIN_SYSTEM.md +355 -0
- package/docs/README.md +6 -1
- package/docs/plans/README.md +1 -0
- package/docs/plans/archive/HOT_RELOADABLE_AGENT_PLUGINS_PLAN.md +218 -0
- package/docs/plans/archive/RELOAD_PLUGGABILITY_PLAN.md +174 -0
- package/docs/plans/archive/UNIFIED_PLUGIN_SYSTEM_PLAN.md +769 -0
- package/package.json +11 -5
- package/dist/CommandPalette-CJHuTJlD.js +0 -5716
- package/docs/bridge.md +0 -135
- package/docs/panels.md +0 -102
- package/docs/plugins.md +0 -158
- /package/docs/plans/{MACRO_PLUGIN_GENERIC_HELPERS_AUDIT.md → archive/MACRO_PLUGIN_GENERIC_HELPERS_AUDIT.md} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-workspace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Workspace UI, plugin, and bridge package for composing chat, files, catalogs, editors, and app-specific panes.",
|
|
@@ -53,6 +53,10 @@
|
|
|
53
53
|
"types": "./dist/events.d.ts",
|
|
54
54
|
"import": "./dist/events.js"
|
|
55
55
|
},
|
|
56
|
+
"./plugin": {
|
|
57
|
+
"types": "./dist/plugin.d.ts",
|
|
58
|
+
"import": "./dist/plugin.js"
|
|
59
|
+
},
|
|
56
60
|
"./globals.css": "./dist/workspace.css"
|
|
57
61
|
},
|
|
58
62
|
"sideEffects": [
|
|
@@ -117,14 +121,15 @@
|
|
|
117
121
|
"cmdk": "^1.1.1",
|
|
118
122
|
"dockview-react": "^4.13.1",
|
|
119
123
|
"fastify": "^5.3.3",
|
|
124
|
+
"jiti": "^2.6.1",
|
|
120
125
|
"lowlight": "^3.3.0",
|
|
121
126
|
"lucide-react": "^1.8.0",
|
|
122
127
|
"react-arborist": "^3.4.0",
|
|
123
128
|
"tailwind-merge": "^2.0.0",
|
|
124
129
|
"zod": "^3.23.0",
|
|
125
130
|
"zustand": "^5.0.0",
|
|
126
|
-
"@hachej/boring-agent": "0.1.
|
|
127
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
131
|
+
"@hachej/boring-agent": "0.1.18",
|
|
132
|
+
"@hachej/boring-ui-kit": "0.1.18"
|
|
128
133
|
},
|
|
129
134
|
"devDependencies": {
|
|
130
135
|
"@tailwindcss/postcss": "^4.0.0",
|
|
@@ -147,13 +152,14 @@
|
|
|
147
152
|
"typescript": "^5.4.0",
|
|
148
153
|
"vite": "^6.0.0",
|
|
149
154
|
"vite-plugin-dts": "^4.5.4",
|
|
150
|
-
"vitest": "^2.0.0"
|
|
155
|
+
"vitest": "^2.0.0",
|
|
156
|
+
"@boring-fixtures/default-plugin": "0.0.0"
|
|
151
157
|
},
|
|
152
158
|
"scripts": {
|
|
153
159
|
"dev": "vite",
|
|
154
160
|
"build": "pnpm --filter @hachej/boring-ui-kit build && tsup && vite build && node ./scripts/build-workspace-css.mjs && node ./scripts/assert-build-artifacts.mjs",
|
|
155
161
|
"typecheck": "pnpm --filter @hachej/boring-ui-kit build && pnpm --filter @hachej/boring-agent build && tsc --noEmit -p tsconfig.front.json && tsc --noEmit -p tsconfig.server.json",
|
|
156
|
-
"test": "vitest run",
|
|
162
|
+
"test": "pnpm --filter @hachej/boring-ui-cli build && vitest run",
|
|
157
163
|
"check:bundle-size": "node ./scripts/check-bundle-size.mjs",
|
|
158
164
|
"lint:plugin-invariants": "node ./scripts/check-plugin-invariants.mjs",
|
|
159
165
|
"lint": "pnpm run typecheck"
|