-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
67 lines (67 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
{
"name": "vite-plugin-markdown",
"version": "3.0.0-2",
"description": "Import markdown files in vite",
"exports": "./dist/index.js",
"type": "module",
"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]>",
"Dafrok <[email protected]>",
"Carretta Riccardo <[email protected]>",
"John Sanders <[email protected]>",
"Stefan van Herwijnen <[email protected]>",
"Richard Raita <[email protected]>",
"Felix Fritz <[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": {
"domhandler": "^5.0.0",
"front-matter": "^4.0.0",
"htmlparser2": "^9.0.0",
"markdown-it": "^14.0.0"
},
"peerDependencies": {
"vite": ">= 5.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@types/babel__core": "7.20.5",
"@types/markdown-it": "14.1.2",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vue/compiler-sfc": "3.5.12",
"cypress": "13.15.1",
"eslint": "8.56.0",
"typescript": "5.3.3",
"vite": "5.4.10"
}
}