forked from devbean/obsidian-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
51
52
53
{
"name": "obsidian-wordpress",
"version": "0.18.0",
"description": "A plugin for publishing Obsidian documents to WordPress.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"release": "standard-version",
"release-test": "standard-version --dry-run",
"release-major": "standard-version --release-as major",
"release-major-test": "standard-version --dry-run --release-as major",
"release-minor": "standard-version --release-as minor",
"release-minor-test": "standard-version --dry-run --release-as minor",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"standard-version": {
"t": ""
},
"keywords": [
"wp",
"wordpress",
"obsidian",
"plugin"
],
"author": "devbean",
"license": "Apache-2.0",
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/markdown-it": "^13.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"date-fns": "^2.28.0",
"esbuild": "0.17.3",
"eslint-plugin-node": "^11.1.0",
"file-type-checker": "^1.0.8",
"imask": "^7.2.1",
"juice": "^10.0.0",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"mathjax-full": "^3.2.2",
"obsidian": "latest",
"standard-version": "^9.3.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"volta": {
"node": "16.20.2"
}
}