dotmd-cli 0.8.7 → 0.9.1
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/LICENSE +1 -1
- package/bin/dotmd.mjs +0 -0
- package/dotmd.config.example.mjs +7 -0
- package/package.json +2 -2
package/LICENSE
CHANGED
package/bin/dotmd.mjs
CHANGED
|
File without changes
|
package/dotmd.config.example.mjs
CHANGED
|
@@ -83,6 +83,13 @@ export const presets = {
|
|
|
83
83
|
actionable: ['--status', 'active,ready', '--has-next-step', '--sort', 'updated', '--all'],
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
+
// ─── Notion ──────────────────────────────────────────────────────────────────
|
|
87
|
+
// IMPORTANT: Use environment variables for tokens — never hardcode secrets in config files.
|
|
88
|
+
// export const notion = {
|
|
89
|
+
// token: process.env.NOTION_TOKEN,
|
|
90
|
+
// databaseId: process.env.NOTION_DATABASE_ID,
|
|
91
|
+
// };
|
|
92
|
+
|
|
86
93
|
// ─── Function Hooks ──────────────────────────────────────────────────────────
|
|
87
94
|
// Hooks are optional. Each receives a default implementation it can wrap or replace.
|
|
88
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dotmd-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "CLI for managing markdown documents with YAML frontmatter — index, query, validate, graph, export, Notion sync, AI summaries.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"test": "node --test test/*.test.mjs"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
|
-
"node": ">=
|
|
44
|
+
"node": ">=20"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@notionhq/client": "^5.13.0",
|