-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "vue-markdown",
"version": "1.0.0",
"description": "Vue 3 port of react-markdown — render Markdown as Vue components",
"type": "module",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"exports": {
".": "./index.js"
},
"keywords": [
"vue",
"vue3",
"markdown",
"react-markdown",
"remark",
"rehype",
"unified",
"component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lingpotool/vue-markdown.git"
},
"homepage": "https://github.com/lingpotool/vue-markdown#readme",
"bugs": {
"url": "https://github.com/lingpotool/vue-markdown/issues"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"dependencies": {
"hast-util-to-jsx-runtime": "^2.3.0",
"html-url-attributes": "^3.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.0"
},
"devDependencies": {
"@vue/test-utils": "^2.4.0",
"fast-check": "^3.15.0",
"happy-dom": "^20.8.3",
"vitest": "^1.6.0",
"vue": "^3.4.0"
},
"scripts": {
"test": "vitest run"
}
}