-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
93 lines (93 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "md-editor-v3",
"version": "5.0.2",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"javascript",
"typescript",
"jsx",
"tsx",
"markdown",
"editor",
"theme",
"html"
],
"description": "Markdown editor for vue3, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...",
"author": {
"name": "zbf",
"url": "https://github.com/imzbf"
},
"homepage": "https://imzbf.github.io/md-editor-v3/",
"repository": {
"type": "git",
"url": "git+https://github.com/imzbf/md-editor-v3.git"
},
"bugs": {
"url": "https://github.com/imzbf/md-editor-v3/issues"
},
"files": [
"lib"
],
"type": "module",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/es/index.mjs",
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "tsx ./scripts/dev",
"build": "tsx ./scripts/build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language-data": "^6.5.1",
"@types/markdown-it": "^14.0.1",
"@vavt/util": "^2.1.0",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"lru-cache": "^11.0.1",
"lucide-vue-next": "^0.453.0",
"markdown-it": "^14.0.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"medium-zoom": "^1.1.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/multiparty": "^4.2.1",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vavt/markdown-theme": "^4.2.1",
"@vavt/vite-plugin-import-markdown": "^1.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"axios": "^1.7.7",
"cropperjs": "^1.6.2",
"eslint": "^9.13.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.29.1",
"highlight.js": "^11.7.0",
"katex": "^0.16.9",
"less": "^4.1.3",
"mermaid": "^11.3.0",
"multiparty": "^4.2.3",
"prettier": "^3.2.5",
"screenfull": "^6.0.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typescript": "5.6.3",
"vite": "^5.4.9",
"vue": "^3.5.12"
},
"peerDependencies": {
"vue": "^3.5.0"
}
}