forked from imzbf/md-editor-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.39 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
{
"name": "md-editor-v3",
"version": "4.21.3",
"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.2.5",
"@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": "^10.2.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": "^0.0.36",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vavt/markdown-theme": "^4.2.1",
"@vavt/vite-plugin-import-markdown": "^1.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"axios": "^1.6.7",
"cropperjs": "^1.6.2",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"highlight.js": "^11.7.0",
"katex": "^0.16.9",
"less": "^4.1.3",
"mermaid": "^10.8.0",
"multiparty": "^4.2.3",
"prettier": "^3.2.5",
"screenfull": "^6.0.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.7.2",
"typescript": "5.4.5",
"vite": "^5.2.10",
"vue": "^3.4.23"
},
"peerDependencies": {
"vue": "^3.2.47"
}
}