@umoteam/editor 1.4.4 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +64 -72
- package/README.zh-CN.md +122 -0
- package/dist/es/style.css +1 -1
- package/dist/es/umo-editor.mjs +16172 -14321
- package/dist/umd/style.css +1 -1
- package/dist/umd/umo-editor.js +3 -3
- package/dist/umd/umo-editor.js.gz +0 -0
- package/package.json +18 -17
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umoteam/editor",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Umo Editor
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "Umo Editor is an open-source document editor based on Vue3. It offers comprehensive document editing capabilities, supports Markdown syntax, and basic rich-text editing functions. It also supports the insertion of various formatted node types, provides a variety of practical tools, and allows for page style customization. Additionally, it supports exporting in multiple formats, printing and print preview, document block editing, the addition of custom extensions, i18n settings, and dark mode support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"umo editor",
|
|
7
7
|
"umodoc editor",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"email": "support@umodoc.com"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
|
-
".npmrc",
|
|
34
33
|
"dist"
|
|
35
34
|
],
|
|
36
35
|
"exports": {
|
|
@@ -47,12 +46,12 @@
|
|
|
47
46
|
"prepublishOnly": "npm run build:all"
|
|
48
47
|
},
|
|
49
48
|
"dependencies": {
|
|
50
|
-
"@
|
|
49
|
+
"@eslint/object-schema": "^2.1.4",
|
|
51
50
|
"@imgly/background-removal": "1.4.5",
|
|
52
51
|
"@sereneinserenade/tiptap-search-and-replace": "^0.1.1",
|
|
53
|
-
"@tiptap-pro/extension-invisible-characters": "^2.8.
|
|
54
|
-
"@tiptap-pro/extension-mathematics": "^2.8.
|
|
55
|
-
"@tiptap-pro/extension-table-of-contents": "^2.8.
|
|
52
|
+
"@tiptap-pro/extension-invisible-characters": "^2.8.9",
|
|
53
|
+
"@tiptap-pro/extension-mathematics": "^2.8.9",
|
|
54
|
+
"@tiptap-pro/extension-table-of-contents": "^2.8.9",
|
|
56
55
|
"@tiptap/extension-bubble-menu": "^2.4.0",
|
|
57
56
|
"@tiptap/extension-character-count": "^2.4.0",
|
|
58
57
|
"@tiptap/extension-color": "^2.4.0",
|
|
@@ -79,7 +78,7 @@
|
|
|
79
78
|
"@tiptap/starter-kit": "^2.4.0",
|
|
80
79
|
"@tiptap/vue-3": "^2.4.0",
|
|
81
80
|
"@vue-monaco/editor": "^0.0.6",
|
|
82
|
-
"@vueuse/core": "^10.
|
|
81
|
+
"@vueuse/core": "^10.11.0",
|
|
83
82
|
"dom-to-image-more": "^3.3.0",
|
|
84
83
|
"es-drager": "^1.2.11",
|
|
85
84
|
"file-saver": "^2.0.5",
|
|
@@ -91,27 +90,29 @@
|
|
|
91
90
|
"nzh": "^1.0.12",
|
|
92
91
|
"plyr": "^3.7.8",
|
|
93
92
|
"pretty-bytes": "^6.1.1",
|
|
94
|
-
"prism-code-editor": "^3.3.
|
|
93
|
+
"prism-code-editor": "^3.3.2",
|
|
95
94
|
"prismjs": "^1.29.0",
|
|
96
95
|
"qrcode-svg": "^1.1.0",
|
|
97
96
|
"svg64": "^2.0.0",
|
|
98
|
-
"tdesign-vue-next": "^1.9.
|
|
99
|
-
"vue": "^3.4.
|
|
100
|
-
"vue-esign": "^1.1.4"
|
|
97
|
+
"tdesign-vue-next": "^1.9.6",
|
|
98
|
+
"vue": "^3.4.30",
|
|
99
|
+
"vue-esign": "^1.1.4",
|
|
100
|
+
"vue-i18n": "^9.13.1"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
+
"@intlify/unplugin-vue-i18n": "^4.0.0",
|
|
103
104
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
104
105
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
105
|
-
"eslint": "^9.
|
|
106
|
+
"eslint": "^9.5.0",
|
|
106
107
|
"eslint-plugin-vue": "^9.26.0",
|
|
107
108
|
"less": "^4.2.0",
|
|
108
109
|
"less-loader": "^12.2.0",
|
|
109
|
-
"prettier": "^3.2
|
|
110
|
-
"terser": "^5.31.
|
|
110
|
+
"prettier": "^3.3.2",
|
|
111
|
+
"terser": "^5.31.1",
|
|
111
112
|
"unplugin-auto-import": "^0.17.6",
|
|
112
113
|
"unplugin-vue-components": "^0.27.0",
|
|
113
|
-
"unplugin-vue-macros": "^2.9.
|
|
114
|
-
"vite": "^5.
|
|
114
|
+
"unplugin-vue-macros": "^2.9.5",
|
|
115
|
+
"vite": "^5.3.1",
|
|
115
116
|
"vite-plugin-compression2": "^1.1.1",
|
|
116
117
|
"vite-plugin-svg-icons": "^2.0.1"
|
|
117
118
|
},
|