generated from THeK3nger/obsidian-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 939 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
{
"name": "hard-breaks",
"author": "bkis",
"version": "0.1.1",
"description": "Turn soft line breaks in Markdown into hard line breaks automatically",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [
"obsidian-md",
"plugin",
"line-breaks",
"hard-line-breaks",
"soft-line-breaks"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^17.0.8",
"obsidian": "^0.15.4",
"rollup": "^2.63.0",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"unified": "^10.1.2",
"unist-util-select": "^4.0.1"
}
}