forked from mokeyish/obsidian-enhancing-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "obsidian-enhancing-export",
"version": "1.1.7",
"description": "This is a enhancing export plugin for Obsidian. It allows to export to formats like Html, DOCX, ePub and PDF or Markdown(Hugo) etc.",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint --ext .ts,.js src build",
"lint-fix": "eslint --fix --ext \"src/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\"",
"format-fix": "prettier --write \"src/**/*.ts\"",
"test": "jest"
},
"keywords": [],
"author": "YISH",
"license": "MIT",
"repository": "https://github.com/mokeyish/obsidian-enhancing-export",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"builtin-modules": "^3.2.0",
"dotenv": "^16.0.0",
"esbuild": "0.14.34",
"esbuild-plugin-copy": "^1.3.0",
"eslint": "^8.13.0",
"jest": "^28.1.0",
"obsidian": "latest",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"tslib": "2.3.1",
"typescript": "4.6.3"
},
"dependencies": {
"yargs": "^17.5.1"
}
}