-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 896 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
{
"name": "vite-plugin-markdownify",
"type": "module",
"version": "0.2.1",
"description": "Converts markdown files to static html files using an html template and outputs them to a folder.",
"main": "index.js",
"private": false,
"scripts": {
"dev": "vite",
"test": "vite build"
},
"author": "Jon Paul Miles",
"license": "MIT",
"bugs": {
"url": "https://github.com/codingfriend1/vite-plugin-markdownify/issues"
},
"homepage": "https://github.com/codingfriend1/vite-plugin-markdownify#readme",
"keywords": [
"vite-plugin",
"markdown",
"generator",
"static-site"
],
"dependencies": {
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-footnote": "^3.0.3",
"markdown-it-modify-token": "^1.0.2"
},
"devDependencies": {
"vite": "^4.4.9"
}
}