generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "obsidian-share-as-gist",
"version": "1.7.0",
"description": "Shares an Obsidian note as a gist on GitHub.com or GitHub Enterprise Server",
"main": "main.js",
"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",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "Tim Rogers",
"license": "MIT",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"builtin-modules": "^4.0.0",
"esbuild": "0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"obsidian": "latest",
"prettier": "^3.3.3",
"tslib": "2.7.0",
"typescript": "5.6.2"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"gray-matter": "^4.0.3"
}
}