opencode-fractal-memory 0.6.1 → 0.6.2

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.
Files changed (2) hide show
  1. package/package.json +2 -3
  2. package/dist/tui/index.js +0 -19
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "opencode-fractal-memory",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Fractal memory system for OpenCode with semantic search and automatic compression.",
5
5
  "main": "dist/plugin.js",
6
6
  "exports": {
7
- ".": "./dist/plugin.js",
8
- "./tui": "./dist/tui/index.js"
7
+ ".": "./dist/plugin.js"
9
8
  },
10
9
  "type": "module",
11
10
  "files": [
package/dist/tui/index.js DELETED
@@ -1,19 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
2
- import { VERSION } from "../version";
3
- const tui = async (api) => {
4
- try {
5
- api.slots.register({
6
- order: 150,
7
- slots: {
8
- sidebar_content(ctx) {
9
- const theme = ctx.theme.current;
10
- return (_jsxs("box", { border: true, borderColor: theme.border, backgroundColor: theme.backgroundPanel, paddingTop: 1, paddingBottom: 1, paddingLeft: 2, paddingRight: 2, flexDirection: "column", gap: 1, children: [_jsx("text", { fg: theme.primary, children: _jsx("b", { children: "Fractal Memory" }) }), _jsxs("text", { fg: theme.textMuted, children: ["v", VERSION] })] }));
11
- },
12
- },
13
- });
14
- }
15
- catch (err) {
16
- console.error("[fractal-memory] TUI plugin registration failed:", err);
17
- }
18
- };
19
- export default { id: "fractal-memory", tui };