@hasna/todos 0.11.3 → 0.11.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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PostgreSQL migrations for open-todos cloud sync.
|
|
3
|
+
*
|
|
4
|
+
* Equivalent of the SQLite migrations in database.ts, translated for PostgreSQL.
|
|
5
|
+
* Each element is a standalone SQL string that must be executed in order.
|
|
6
|
+
*/
|
|
7
|
+
export declare const PG_MIGRATIONS: string[];
|
|
8
|
+
//# sourceMappingURL=pg-migrations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pg-migrations.d.ts","sourceRoot":"","sources":["../../src/db/pg-migrations.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,eAAO,MAAM,aAAa,EAAE,MAAM,EA0jBjC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/todos",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
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",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"dev:cli": "bun run src/cli/index.tsx",
|
|
31
31
|
"dev:mcp": "bun run src/mcp/index.ts",
|
|
32
32
|
"dev:serve": "bun run src/server/index.ts",
|
|
33
|
-
"prepublishOnly": "bun run build"
|
|
33
|
+
"prepublishOnly": "bun run build",
|
|
34
|
+
"postinstall": "mkdir -p $HOME/.hasna/todos $HOME/.hasna/todos/training 2>/dev/null || true"
|
|
34
35
|
},
|
|
35
36
|
"keywords": [
|
|
36
37
|
"todos",
|
|
@@ -76,4 +77,4 @@
|
|
|
76
77
|
"@types/react": "^18.3.18",
|
|
77
78
|
"typescript": "^5.7.3"
|
|
78
79
|
}
|
|
79
|
-
}
|
|
80
|
+
}
|