-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
33 lines (33 loc) · 966 Bytes
/
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
{
"name": "obsidian-ghost-publish",
"version": "1.3.0",
"description": "Obsidian plugin for easy publish to ghost with a single click.",
"main": "src/main.ts",
"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": {
"name": "Jay Nguyen",
"email": "[email protected]",
"url": "https://github.com/jaynguyens/obsidian-ghost-publish"
},
"license": "MIT",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"builtin-modules": "^3.3.0",
"esbuild": "0.14.43",
"jsonwebtoken": "^8.5.1",
"markdown-it": "^13.0.1",
"obsidian": "^0.14.8",
"tslib": "2.4.0",
"typescript": "4.7.3",
"gray-matter": "^4.0.3"
}
}