-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "vite-plugin-markdown",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"gray-matter": "^4.0.3",
"lodash-es": "^4.17.21",
"path-browserify": "^1.0.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-prism": "^2.3.2",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-code-blocks": "^2.0.1",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.0"
},
"devDependencies": {
"@babel/helper-plugin-utils": "^7.24.8",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/standalone": "^7.25.6",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/babel__standalone": "^7.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.5.5",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"esbuild": "^0.23.1",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"prism-themes": "^1.9.0",
"sass": "^1.78.0",
"typescript": "^5.2.2",
"unist-util-visit": "^5.0.0",
"vite": "^5.0.0"
},
"keywords": [
"remark",
"markdown",
"rehype",
"react",
"component",
"vite"
]
}