@hasna/todos 0.11.53 → 0.11.55
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/dist/cli/index.js +1171 -484
- package/dist/release-provenance.json +3 -3
- package/dist/server/index.js +2 -2
- package/package.json +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "@hasna/todos",
|
|
3
|
-
"packageVersion": "0.11.
|
|
3
|
+
"packageVersion": "0.11.55",
|
|
4
4
|
"repository": "https://github.com/hasna/todos.git",
|
|
5
|
-
"gitCommit": "
|
|
6
|
-
"generatedAt": "2026-06-
|
|
5
|
+
"gitCommit": "00b566276db208cd222e9232ce2ff9fa20f9cba2",
|
|
6
|
+
"generatedAt": "2026-06-16T11:14:19.914Z"
|
|
7
7
|
}
|
package/dist/server/index.js
CHANGED
|
@@ -13984,7 +13984,7 @@ class JSONSchemaGenerator {
|
|
|
13984
13984
|
if (val === undefined) {
|
|
13985
13985
|
if (this.unrepresentable === "throw") {
|
|
13986
13986
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
13987
|
-
}
|
|
13987
|
+
}
|
|
13988
13988
|
} else if (typeof val === "bigint") {
|
|
13989
13989
|
if (this.unrepresentable === "throw") {
|
|
13990
13990
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
|
@@ -56983,7 +56983,7 @@ var require_to_json_schema = __commonJS((exports) => {
|
|
|
56983
56983
|
if (val === undefined) {
|
|
56984
56984
|
if (this.unrepresentable === "throw") {
|
|
56985
56985
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
56986
|
-
}
|
|
56986
|
+
}
|
|
56987
56987
|
} else if (typeof val === "bigint") {
|
|
56988
56988
|
if (this.unrepresentable === "throw") {
|
|
56989
56989
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/todos",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.55",
|
|
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/events": "^0.1.7",
|
|
92
93
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
93
94
|
"chalk": "^5.4.1",
|
|
94
95
|
"commander": "^13.1.0",
|