forked from hmsk/vite-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
56
57
58
{
"name": "vite-plugin-markdown",
"version": "2.0.2",
"description": "Import markdown files in vite",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w -p .",
"build": "rm -rf dist && tsc -p .",
"lint": "eslint . --ext .ts",
"test:acceptance": "npm run cypress:run",
"cypress:run": "cypress run --config-file test/acceptance/cypress.json",
"cypress:open": "cypress open --config-file test/acceptance/cypress.json"
},
"keywords": [
"vite",
"frontmatter",
"markdown",
"react",
"vue"
],
"author": "Kengo Hamasaki <[email protected]>",
"contributors": [
"sapphi-red <[email protected]>",
"Alex Zheng <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hmsk/vite-plugin-markdown.git"
},
"bugs": {
"url": "https://github.com/hmsk/vite-plugin-markdown/issues"
},
"homepage": "https://github.com/hmsk/vite-plugin-markdown/tree/main/#readme",
"dependencies": {
"front-matter": "^4.0.0",
"htmlparser2": "^6.0.0",
"markdown-it": "^12.0.0"
},
"peerDependencies": {
"vite": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@types/markdown-it": "12.0.1",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"@vue/compiler-sfc": "3.0.7",
"cypress": "6.5.0",
"eslint": "7.22.0",
"typescript": "4.2.3",
"vite": "2.0.5"
}
}