opencode-convodump 0.0.2 → 0.0.3

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 ADDED
@@ -0,0 +1,2 @@
1
+ export { ConvoDumpPlugin } from "./.opencode/plugins/convodump"
2
+ export { ConvoDumpPlugin as default } from "./.opencode/plugins/convodump"
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "opencode-convodump",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "description": "OpenCode plugin that exports each conversation session to a readable Markdown transcript.",
6
+ "module": "index.ts",
6
7
  "type": "module",
7
8
  "license": "CC0-1.0",
8
9
  "repository": {
@@ -22,11 +23,12 @@
22
23
  ],
23
24
  "exports": {
24
25
  ".": {
25
- "import": "./.opencode/plugins/convodump.ts",
26
- "types": "./.opencode/plugins/convodump.ts"
26
+ "import": "./index.ts",
27
+ "types": "./index.ts"
27
28
  }
28
29
  },
29
30
  "files": [
31
+ "index.ts",
30
32
  ".opencode/plugins/convodump.ts",
31
33
  "README.md",
32
34
  "LICENSE"