@hasna/todos 0.11.67 → 0.11.68

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.
@@ -0,0 +1,8 @@
1
+ import type { Database } from "bun:sqlite";
2
+ import { type ProjectPanel } from "@hasna/contracts";
3
+ export interface TodosProjectPanelOptions {
4
+ limit?: number;
5
+ db?: Database;
6
+ }
7
+ export declare function createTodosProjectPanel(projectId: string, options?: TodosProjectPanelOptions): ProjectPanel;
8
+ //# sourceMappingURL=project-panel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-panel.d.ts","sourceRoot":"","sources":["../../src/lib/project-panel.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,EAGL,KAAK,YAAY,EAElB,MAAM,kBAAkB,CAAC;AAO1B,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,QAAQ,CAAC;CACf;AAkGD,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,GAAE,wBAA6B,GAAG,YAAY,CA2G/G"}
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "packageName": "@hasna/todos",
3
- "packageVersion": "0.11.67",
3
+ "packageVersion": "0.11.68",
4
4
  "repository": "https://github.com/hasna/todos.git",
5
- "gitCommit": "0967ec7e7a39484e06ac24e906e344a668b1c0bf",
6
- "generatedAt": "2026-06-28T22:15:44.055Z"
5
+ "gitCommit": "d97f06bfd03ee6072813a25521c48721cf91e5c2",
6
+ "generatedAt": "2026-06-29T05:31:50.736Z"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/todos",
3
- "version": "0.11.67",
3
+ "version": "0.11.68",
4
4
  "description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -89,6 +89,7 @@
89
89
  "author": "Andrei Hasna <andrei@hasna.com>",
90
90
  "license": "Apache-2.0",
91
91
  "dependencies": {
92
+ "@hasna/contracts": "^0.2.2",
92
93
  "@hasna/events": "^0.1.11",
93
94
  "@modelcontextprotocol/sdk": "^1.12.1",
94
95
  "chalk": "^5.4.1",