-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "obsidian-enhancing-export",
"version": "1.10.9",
"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": "vite build -w -m development",
"build": "vite build",
"version-bump": "node version.mjs bump",
"version": "node version.mjs",
"lint": "eslint --ext .ts,.js src",
"lint-fix": "eslint --fix --ext .ts,.js src",
"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",
"type": "module",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.14.8",
"@types/semver": "^7.5.0",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"builtin-modules": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"obsidian": "latest",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"tslib": "2.6.3",
"typescript": "5.0.4",
"vite": "^5.2.13",
"vite-plugin-solid": "^2.10.2",
"vite-plugin-static-copy": "^1.0.5"
},
"dependencies": {
"semver": "^7.5.1",
"solid-js": "^1.8.20",
"yargs-parser": "^21.1.1"
}
}