@hasna/todos 0.15.50 → 0.15.52
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/cloud-router.d.ts.map +1 -1
- package/dist/cli/commands/project-commands.d.ts +15 -0
- package/dist/cli/commands/project-commands.d.ts.map +1 -1
- package/dist/cli/commands/query-commands.d.ts.map +1 -1
- package/dist/cli/helpers.d.ts.map +1 -1
- package/dist/cli/index.js +521 -342
- package/dist/contracts.js +194 -95
- package/dist/db/task-crud.d.ts.map +1 -1
- package/dist/index.js +406 -299
- package/dist/lib/model-config.d.ts +2 -1
- package/dist/lib/model-config.d.ts.map +1 -1
- package/dist/lib/paths.d.ts +40 -0
- package/dist/lib/paths.d.ts.map +1 -0
- package/dist/lib/sync-utils.d.ts +7 -0
- package/dist/lib/sync-utils.d.ts.map +1 -1
- package/dist/mcp/index.js +280 -174
- package/dist/mcp.js +7 -4
- package/dist/project-registration.js +192 -93
- package/dist/registry.js +194 -95
- package/dist/release-provenance.json +5 -5
- package/dist/sdk/index.js +100 -8
- package/dist/server/index.js +449 -220
- package/dist/storage.js +183 -87
- package/dist/task-manifest.js +113 -17
- package/dist/testing.d.ts +10 -9
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +7 -4
- package/postinstall.js +34 -0
package/dist/mcp.js
CHANGED
|
@@ -41,7 +41,7 @@ var __require = import.meta.require;
|
|
|
41
41
|
// package.json
|
|
42
42
|
var package_default = {
|
|
43
43
|
name: "@hasna/todos",
|
|
44
|
-
version: "0.15.
|
|
44
|
+
version: "0.15.52",
|
|
45
45
|
description: "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
|
|
46
46
|
type: "module",
|
|
47
47
|
main: "dist/index.js",
|
|
@@ -100,6 +100,7 @@ var package_default = {
|
|
|
100
100
|
files: [
|
|
101
101
|
"dist",
|
|
102
102
|
"dashboard/dist",
|
|
103
|
+
"postinstall.js",
|
|
103
104
|
"LICENSE",
|
|
104
105
|
"README.md"
|
|
105
106
|
],
|
|
@@ -126,7 +127,7 @@ var package_default = {
|
|
|
126
127
|
"test:attested-container-compatibility-vector": "bun test scripts/attested-container-compatibility-vector.test.ts",
|
|
127
128
|
"issue:release-review": "bun run scripts/issue-npm-release-agent-review.ts",
|
|
128
129
|
prepublishOnly: "bun run scripts/verify-public-release.ts --mode=publish",
|
|
129
|
-
postinstall: "
|
|
130
|
+
postinstall: "node postinstall.js"
|
|
130
131
|
},
|
|
131
132
|
keywords: [
|
|
132
133
|
"todos",
|
|
@@ -160,13 +161,15 @@ var package_default = {
|
|
|
160
161
|
author: "Andrei Hasna <andrei@hasna.com>",
|
|
161
162
|
license: "Apache-2.0",
|
|
162
163
|
dependencies: {
|
|
163
|
-
"@hasna/contracts": "0.14.
|
|
164
|
+
"@hasna/contracts": "0.14.2",
|
|
164
165
|
"@hasna/events": "^0.1.11",
|
|
166
|
+
"@hasna/paths": "0.1.0",
|
|
165
167
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
166
168
|
chalk: "^5.4.1",
|
|
167
169
|
commander: "^13.1.0",
|
|
168
170
|
ink: "^5.2.0",
|
|
169
171
|
react: "^18.3.1",
|
|
172
|
+
"signal-exit": "3.0.7",
|
|
170
173
|
zod: "3.25.76"
|
|
171
174
|
},
|
|
172
175
|
overrides: {
|
|
@@ -175,7 +178,7 @@ var package_default = {
|
|
|
175
178
|
zod: "3.25.76"
|
|
176
179
|
},
|
|
177
180
|
devDependencies: {
|
|
178
|
-
"@types/bun": "
|
|
181
|
+
"@types/bun": "1.3.14",
|
|
179
182
|
"@types/react": "^18.3.18",
|
|
180
183
|
"bun-types": "1.3.9",
|
|
181
184
|
"hasna-deployment-contracts": "npm:@hasna/contracts@0.10.4",
|