-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 866 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
{
"name": "obsidian-telegraph-publish",
"version": "1.2.3",
"main": "main.js",
"scripts": {
"start": "node esbuild.config.mjs",
"clean": "rm -rf build",
"build": "tsc -noEmit -skipLibCheck && BUILD_ENV=production node esbuild.config.mjs && cp manifest.json build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"release": "yarn build && gh release create ${npm_package_version} build/*"
},
"keywords": [],
"author": "Reorx",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.1",
"@types/superagent": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.17.10",
"eslint": "^8.35.0",
"obsidian": "^1.1.1",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"dependencies": {
"gray-matter": "^4.0.3"
}
}