generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 778 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
34
35
36
37
38
39
40
41
{
"name": "obsidian-sample-plugin",
"version": "0.0.1",
"description": "This is a sample plugin for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"release": "standard-version"
},
"standard-version": {
"t": "",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Fixes"
},
{
"type": "docs",
"section": "Documentation"
}
],
"header": "## Changelog"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.1",
"esbuild": "^0.13.12",
"obsidian": "^0.12.17",
"standard-version": "^9.3.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {}
}