@zhushanwen/pi-todo 0.1.4 → 0.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhushanwen/pi-todo",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "AI-driven todo list for Pi — stateful task management with session persistence and /todos command.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -21,6 +21,9 @@
21
21
  "src/",
22
22
  "index.ts"
23
23
  ],
24
+ "devDependencies": {
25
+ "vitest": "^4.1.8"
26
+ },
24
27
  "peerDependencies": {
25
28
  "@mariozechner/pi-coding-agent": "*",
26
29
  "@earendil-works/pi-tui": "*",
@@ -36,6 +39,7 @@
36
39
  }
37
40
  },
38
41
  "scripts": {
39
- "typecheck": "npx tsc --noEmit"
42
+ "typecheck": "npx tsc --noEmit",
43
+ "test": "vitest run"
40
44
  }
41
45
  }