@comfanion/usethis_todo 0.1.2 → 0.1.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 +1 -5
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -2,9 +2,6 @@ import type { Plugin } from "@opencode-ai/plugin"
2
2
 
3
3
  import { write, read, read_five, read_by_id, update } from "./tools"
4
4
 
5
- // Re-export tools for programmatic use/tests
6
- export { write, read, read_five, read_by_id, update } from "./tools"
7
-
8
5
  const UsethisTodoPlugin: Plugin = async ({ client }) => {
9
6
  return {
10
7
  tool: {
@@ -65,5 +62,4 @@ const UsethisTodoPlugin: Plugin = async ({ client }) => {
65
62
  }
66
63
  }
67
64
 
68
- export default UsethisTodoPlugin;
69
- export { UsethisTodoPlugin };
65
+ export default UsethisTodoPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/usethis_todo",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OpenCode plugin: enhanced TODO tools (dual storage + dependency graph)",
5
5
  "type": "module",
6
6
  "main": "./index.ts",