forked from SkepticMystic/semantic-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 904 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
{
"name": "obsidian-sample-plugin",
"version": "0.0.1",
"description": "This is a sample plugin for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"release": "standard-version"
},
"standard-version": {
"t": "",
"types": [
{
"type": "docs",
"section": "Documentation"
}
],
"header": "## Changelog"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^16.11.1",
"obsidian": "^0.12.17",
"rollup": "^2.58.3",
"rollup-plugin-ignore": "^1.0.10",
"standard-version": "^9.3.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {}
}