opencode-readseek 0.6.0 → 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/index.ts +2 -0
  2. package/package.json +5 -3
package/index.ts CHANGED
@@ -537,3 +537,5 @@ export const ReadSeekPlugin: Plugin = async (_input, options) => {
537
537
  },
538
538
  };
539
539
  };
540
+
541
+ export default { id: "opencode-readseek", server: ReadSeekPlugin };
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "opencode-readseek",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "OpenCode plugin for readseek-backed structural code navigation",
5
5
  "type": "module",
6
+ "main": "./index.ts",
6
7
  "exports": {
7
- ".": "./index.ts"
8
+ ".": "./index.ts",
9
+ "./server": "./index.ts"
8
10
  },
9
11
  "keywords": [
10
12
  "opencode",
@@ -28,7 +30,7 @@
28
30
  "node": ">=20.0.0"
29
31
  },
30
32
  "dependencies": {
31
- "@jarkkojs/readseek": "^0.6.0",
33
+ "@jarkkojs/readseek": "^0.6.2",
32
34
  "@opencode-ai/plugin": "^1.17.20"
33
35
  },
34
36
  "devDependencies": {