-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "vue-markdown-wrapper",
"version": "2.0.2",
"author": {
"name": "Marc Jorge Gonzalez",
"url": "https://github.com/mjorgegulab"
},
"license": "MIT",
"description": "Vue Markdown component based on marked library",
"bugs": {
"url": "https://github.com/mjorgegulab/vue-markdown-wrapper/issues"
},
"repository": "github:mjorgegulab/vue-markdown-wrapper",
"homepage": "https://github.com/mjorgegulab/vue-markdown-wrapper",
"main": "./dist/vue-markdown.umd.js",
"module": "./dist/vue-markdown.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-markdown.mjs",
"require": "./dist/vue-markdown.umd.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"dompurify": "^3.1.7",
"marked": "^13.0.3"
},
"peerDependencies": {},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/marked": "^6.0.0",
"@types/node": "^22.5.2",
"@vitejs/plugin-vue": "^5.1.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^4.1.0",
"vue": "^3.4.38",
"vue-tsc": "^2.1.4"
}
}