-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
53
54
55
{
"name": "ezmdpage",
"version": "2.0.3",
"description": "📝 Write raw Markdown in .html files that gets auto-rendered everywhere",
"keywords": [
"html",
"markdown",
"renderer",
"plaintext",
"md",
"offline-capable",
"markdeep"
],
"homepage": "https://github.com/togajam/ezmdpage#readme",
"bugs": "https://github.com/togajam/ezmdpage/issues",
"repository": "github:togajam/ezmdpage",
"license": "MIT",
"contributors": [
"Jacob Hummer <[email protected]> (https://jcbhmr.me/)"
],
"type": "module",
"main": "dist/index.min.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"lint": "prettier -w --ignore-path .gitignore .",
"test": "conc \"vite build -w\" \"serve test\""
},
"prettier": {
"proseWrap": "always",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "markdown"
}
}
]
},
"dependencies": {
"github-markdown-css": "^5.2.0",
"marked": "^4.3.0"
},
"devDependencies": {
"@types/marked": "^5.0.0",
"concurrently": "^8.2.0",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"serve": "^14.2.0",
"vite": "^4.3.9",
"vite-plugin-css-injected-by-js": "^3.1.0"
}
}