-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 Bytes
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
{
"name": "knowledge-vault",
"version": "1.0.0",
"description": "Markdown-based knowledge hub that auto-links Git repos via junctions (Windows) or symlinks (macOS/Linux)",
"main": "vault.js",
"bin": {
"vault": "./vault.js"
},
"scripts": {
"test": "node --test vault.test.js",
"pull": "node vault.js pull",
"add": "node vault.js add",
"status": "node vault.js status"
},
"keywords": [
"knowledge-base",
"vault",
"obsidian",
"markdown",
"documentation",
"junction",
"symlink",
"cross-platform",
"windows",
"macos",
"linux",
"git"
],
"author": "Anton Bayer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/antonbayer/Knowledge-Hub.git"
},
"engines": {
"node": ">=18.0.0"
}
}