-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 KB
/
package.json
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
{
"name": "phanford-obsidian-publish",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "Phanford Obsidian Publish",
"author": {
"name": "Patrick Hanford",
"email": "[email protected]",
"url": "https://phanford.dev/"
},
"license": "MIT",
"keywords": [
"nolebase",
"nolebase-integration",
"obsidian",
"obsidian-plugin"
],
"type": "module",
"main": "./dist/main.js",
"files": [
"dist"
],
"scripts": {
"build": "node esbuild.config.mjs production",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"typecheck": "tsc --noEmit",
"symlink": "mkdir -p \"$OBSIDIAN_PLUGINS_PATH/$OBSIDIAN_PLUGIN_NAME\" && ln -sfn \"$(pwd)/dist/\"* \"$OBSIDIAN_PLUGINS_PATH/$OBSIDIAN_PLUGIN_NAME/\""
},
"devDependencies": {
"@codemirror/view": "^6.35.0",
"@types/diff": "^7.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.3",
"builtin-modules": "^3.3.0",
"obsidian": "^1.7.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"diff": "^7.0.0",
"esbuild": "^0.25.0",
"fs": "0.0.1-security",
"isomorphic-git": "1.27.1",
"js-yaml": "^4.1.0",
"process": "^0.11.10",
"slugify": "^1.6.6",
"yaml": "^2.7.0"
}
}