@xfabric/memory 0.2.8 → 0.2.9

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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Dedicated OpenCode plugin entry point
3
+ * Only exports the MemoryPlugin function to avoid confusing OpenCode's plugin loader
4
+ */
5
+ export { MemoryPlugin } from "./plugin/index.js";
6
+ //# sourceMappingURL=opencode-plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"opencode-plugin.d.ts","sourceRoot":"","sources":["../src/opencode-plugin.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Dedicated OpenCode plugin entry point
3
+ * Only exports the MemoryPlugin function to avoid confusing OpenCode's plugin loader
4
+ */
5
+ export { MemoryPlugin } from "./plugin/index.js";
6
+ //# sourceMappingURL=opencode-plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"opencode-plugin.js","sourceRoot":"","sources":["../src/opencode-plugin.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC"}
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@xfabric/memory",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Semantic memory search for AI agents",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
+ "types": "./dist/opencode-plugin.d.ts",
9
+ "default": "./dist/opencode-plugin.js"
10
+ },
11
+ "./full": {
8
12
  "types": "./dist/index.d.ts",
9
13
  "default": "./dist/index.js"
10
14
  },
@@ -13,8 +17,8 @@
13
17
  "default": "./dist/plugin/index.js"
14
18
  }
15
19
  },
16
- "main": "./dist/index.js",
17
- "types": "./dist/index.d.ts",
20
+ "main": "./dist/opencode-plugin.js",
21
+ "types": "./dist/opencode-plugin.d.ts",
18
22
  "files": [
19
23
  "dist"
20
24
  ],