forked from KosmosisDire/obsidian-webpage-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "obsidian-webpage-export",
"version": "1.3.2",
"description": "Exports an obsidian document as an HTML document / webpage / website, correctly including all styling and formatting.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Nathan George",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"builtin-modules": "3.3.0",
"electron": "^26.1.0",
"esbuild": "0.14.47",
"eslint": "^8.56.0",
"obsidian": "^1.4.11",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"file-type": "^19.0.0",
"html-minifier-terser": "^7.2.0",
"mime": "^4.0.3",
"minisearch": "^6.3.0",
"rss": "^1.2.2",
"upath": "^2.0.1"
}
}