-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "@f3ve/vue-markdown-it",
"version": "0.2.3",
"description": "Vue 3 markdown-it component",
"main": "./dist/vue-markdown-it.umd.js",
"module": "./dist/vue-markdown-it.mjs",
"types": "./dist/vue-markdown-it.d.ts",
"type": "module",
"files": [
"./dist"
],
"exports": {
".": {
"import": "./dist/vue-markdown-it.js",
"require": "./dist/vue-markdown-it.umd.cjs"
},
"./components": {
"import": "./dist/src/components"
}
},
"repository": {
"type": "git",
"url": "https://github.com/f3ve/vue-markdown-it"
},
"scripts": {
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"vue",
"vue 3",
"markdown",
"markdown-it",
"vue markdown",
"vue 3 markdown",
"vue-markdown-it",
"@f3ve/vue-markdown-it"
],
"author": "f3ve",
"license": "MIT",
"dependencies": {
"markdown-it": "^14.1.0"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.8.1",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"unplugin-auto-import": "^0.18.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.12"
}
}