-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "obsidian-notion-cli",
"version": "0.1.0",
"description": "One-way CLI sync from Obsidian vault to Notion pages. Frontmatter is the contract.",
"type": "module",
"bin": {
"vault-sync": "./bin/vault-sync.js",
"obsidian-notion": "./bin/vault-sync.js"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js"
},
"keywords": [
"obsidian",
"notion",
"sync",
"markdown",
"pkm",
"cli"
],
"author": "BTW Studio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/btw-hash/vault-sync.git"
},
"homepage": "https://github.com/btw-hash/vault-sync#readme",
"bugs": {
"url": "https://github.com/btw-hash/vault-sync/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@notionhq/client": "^2.3.0",
"gray-matter": "^4.0.3",
"commander": "^12.1.0"
}
}