@white-give/editor-vue 1.0.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 +28 -0
- package/dist/es/index.js +109400 -0
- package/dist/index.css +1 -0
- package/dist/lib/index.js +373 -0
- package/package.json +122 -0
package/package.json
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@white-give/editor-vue",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"author": "white-give",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/lib/index.js",
|
|
8
|
+
"module": "./dist/es/index.js",
|
|
9
|
+
"description": "A Vue 3 editor component",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"white editor",
|
|
12
|
+
"vue editor",
|
|
13
|
+
"vue3 editor",
|
|
14
|
+
"ai editor",
|
|
15
|
+
"editor",
|
|
16
|
+
"tiptap"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./types/index.d.ts",
|
|
25
|
+
"import": "./dist/es/index.js",
|
|
26
|
+
"require": "./dist/lib/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./style": {
|
|
29
|
+
"import": "./dist/style.css"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite --host",
|
|
37
|
+
"build": "run-p type-check \"build-only {@}\" --",
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"build-only": "vite build",
|
|
40
|
+
"type-check": "vue-tsc --build",
|
|
41
|
+
"lint": "eslint . --fix --cache",
|
|
42
|
+
"format": "prettier --write src/"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@tiptap-extend/columns": "^2.1.6",
|
|
46
|
+
"@tiptap/core": "2.11.5",
|
|
47
|
+
"@tiptap/extension-bold": "2.11.5",
|
|
48
|
+
"@tiptap/extension-bubble-menu": "2.11.5",
|
|
49
|
+
"@tiptap/extension-bullet-list": "2.11.5",
|
|
50
|
+
"@tiptap/extension-character-count": "2.11.5",
|
|
51
|
+
"@tiptap/extension-code-block": "2.11.5",
|
|
52
|
+
"@tiptap/extension-code-block-lowlight": "2.11.5",
|
|
53
|
+
"@tiptap/extension-collaboration": "2.11.5",
|
|
54
|
+
"@tiptap/extension-color": "2.11.5",
|
|
55
|
+
"@tiptap/extension-document": "2.11.5",
|
|
56
|
+
"@tiptap/extension-dropcursor": "2.11.5",
|
|
57
|
+
"@tiptap/extension-focus": "2.11.5",
|
|
58
|
+
"@tiptap/extension-font-family": "2.11.5",
|
|
59
|
+
"@tiptap/extension-heading": "2.11.5",
|
|
60
|
+
"@tiptap/extension-highlight": "2.11.5",
|
|
61
|
+
"@tiptap/extension-history": "2.11.5",
|
|
62
|
+
"@tiptap/extension-horizontal-rule": "2.11.5",
|
|
63
|
+
"@tiptap/extension-image": "2.11.5",
|
|
64
|
+
"@tiptap/extension-link": "2.11.5",
|
|
65
|
+
"@tiptap/extension-mention": "2.11.5",
|
|
66
|
+
"@tiptap/extension-ordered-list": "2.11.5",
|
|
67
|
+
"@tiptap/extension-placeholder": "2.11.5",
|
|
68
|
+
"@tiptap/extension-subscript": "2.11.5",
|
|
69
|
+
"@tiptap/extension-superscript": "2.11.5",
|
|
70
|
+
"@tiptap/extension-table": "2.11.5",
|
|
71
|
+
"@tiptap/extension-table-cell": "2.11.5",
|
|
72
|
+
"@tiptap/extension-table-header": "2.11.5",
|
|
73
|
+
"@tiptap/extension-table-row": "2.11.5",
|
|
74
|
+
"@tiptap/extension-task-item": "2.11.5",
|
|
75
|
+
"@tiptap/extension-task-list": "2.11.5",
|
|
76
|
+
"@tiptap/extension-text-align": "2.11.5",
|
|
77
|
+
"@tiptap/extension-text-style": "2.11.5",
|
|
78
|
+
"@tiptap/extension-typography": "2.11.5",
|
|
79
|
+
"@tiptap/extension-underline": "2.11.5",
|
|
80
|
+
"@tiptap/pm": "2.11.5",
|
|
81
|
+
"@tiptap/starter-kit": "2.11.5",
|
|
82
|
+
"@tiptap/suggestion": "2.11.5",
|
|
83
|
+
"@tiptap/vue-3": "2.11.5",
|
|
84
|
+
"@vueuse/core": "^14.0.0",
|
|
85
|
+
"echarts": "^6.0.0",
|
|
86
|
+
"es-drager": "^1.3.2",
|
|
87
|
+
"file-saver": "^2.0.5",
|
|
88
|
+
"file64": "^1.0.5",
|
|
89
|
+
"highlight.js": "^11.11.1",
|
|
90
|
+
"lodash-es": "^4.17.22",
|
|
91
|
+
"lowlight": "^3.3.0",
|
|
92
|
+
"tippy.js": "^6.3.7",
|
|
93
|
+
"tiptap-extension-table-of-content": "^1.0.1",
|
|
94
|
+
"uuid": "^13.0.0",
|
|
95
|
+
"vue": "^3.5.22",
|
|
96
|
+
"vue-clipboard3": "^2.0.0",
|
|
97
|
+
"vue-color": "^3.3.3"
|
|
98
|
+
},
|
|
99
|
+
"devDependencies": {
|
|
100
|
+
"@tsconfig/node22": "^22.0.2",
|
|
101
|
+
"@types/file-saver": "^2.0.7",
|
|
102
|
+
"@types/lodash-es": "^4.17.12",
|
|
103
|
+
"@types/node": "^22.18.11",
|
|
104
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
105
|
+
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
106
|
+
"@vue/eslint-config-prettier": "^10.2.0",
|
|
107
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
108
|
+
"@vue/tsconfig": "^0.8.1",
|
|
109
|
+
"autoprefixer": "^10.4.21",
|
|
110
|
+
"eslint": "^9.37.0",
|
|
111
|
+
"eslint-plugin-vue": "~10.5.0",
|
|
112
|
+
"jiti": "^2.6.1",
|
|
113
|
+
"less": "^4.4.1",
|
|
114
|
+
"npm-run-all2": "^8.0.4",
|
|
115
|
+
"postcss": "^8.5.4",
|
|
116
|
+
"prettier": "3.6.2",
|
|
117
|
+
"tailwindcss": "^3.4.15",
|
|
118
|
+
"typescript": "~5.9.0",
|
|
119
|
+
"vite": "^7.1.11",
|
|
120
|
+
"vue-tsc": "^3.1.1"
|
|
121
|
+
}
|
|
122
|
+
}
|