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