forked from imzbf/md-editor-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.59 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
94
95
96
97
98
99
100
101
{
"name": "md-editor-v3",
"version": "4.6.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://imzbf.top"
},
"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": "vue-tsc && tsx ./scripts/build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/language-data": "^6.3.0",
"@types/markdown-it": "^12.2.3",
"@vavt/util": "^1.3.0",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"lru-cache": "^8.0.4",
"markdown-it": "^13.0.1",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-task-lists": "^2.1.1",
"medium-zoom": "^1.0.8",
"punycode": "^2.3.0"
},
"devDependencies": {
"@types/katex": "^0.16.0",
"@types/multiparty": "^0.0.33",
"@types/node": "^18.15.2",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vavt/markdown-theme": "^3.0.2",
"@vavt/vite-plugin-import-markdown": "^1.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"axios": "^1.3.4",
"cropperjs": "^1.5.13",
"eslint": "^8.36.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"highlight.js": "^11.7.0",
"katex": "^0.16.4",
"less": "^4.1.3",
"mermaid": "^10.0.2",
"multiparty": "^4.2.3",
"prettier": "^2.8.4",
"screenfull": "^6.0.2",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vue": "^3.2.47",
"vue-tsc": "^1.2.0"
},
"peerDependencies": {
"vue": "^3.2.47"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"printWidth": 90,
"proseWrap": "never",
"endOfLine": "auto"
}
}