generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "advanced-cursors",
"version": "0.5.1",
"description": "Use multiple cursors even more powerfully",
"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": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
}
],
"header": "## Advanced Cursors Changelog"
},
"keywords": [],
"author": "SkepticMystic",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^14.17.32",
"obsidian": "^0.12.16",
"rollup": "^2.58.3",
"rollup-plugin-svelte": "7.1.0",
"svelte-check": "^1.6.0",
"svelte-preprocess": "^4.9.8",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@tsconfig/svelte": "^2.0.1",
"obsidian-community-lib": "1.0.0",
"standard-version": "^9.3.1",
"svelte": "3.35.0"
}
}