@ryan_nookpi/pi-extension-todo-write 0.1.2 → 0.1.4
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 +1 -1
- package/package.json +11 -1
package/index.ts
CHANGED
|
@@ -52,7 +52,7 @@ const todoWidgetAgentRunningStore = new Map<string, boolean>();
|
|
|
52
52
|
const todoTurnStore = new Map<string, number>();
|
|
53
53
|
const TODO_HIDE_COMPLETED_AFTER_TURNS = 2;
|
|
54
54
|
const TODO_HIDE_COMPLETED_AFTER_MS = 90_000;
|
|
55
|
-
const TODO_MAX_VISIBLE_COMPLETED_WIDGET_ITEMS =
|
|
55
|
+
const TODO_MAX_VISIBLE_COMPLETED_WIDGET_ITEMS = 1;
|
|
56
56
|
const TODO_STATE_ENTRY_TYPE = "todo-write-state";
|
|
57
57
|
const TODO_COMPACTION_REMINDER_TYPE = "todo-write-compaction-reminder";
|
|
58
58
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ryan_nookpi/pi-extension-todo-write",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Todo write tool extension for pi.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Jonghakseo/pi-extension.git",
|
|
9
|
+
"directory": "packages/todo-write"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Jonghakseo/pi-extension/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Jonghakseo/pi-extension/tree/main/packages/todo-write#readme",
|
|
5
15
|
"type": "module",
|
|
6
16
|
"keywords": [
|
|
7
17
|
"pi-package"
|