@jx-health/rich-editor 0.0.1
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 +23 -0
- package/dist/index.d.ts +1129 -0
- package/dist/index.js +23421 -0
- package/dist/style.css +1654 -0
- package/package.json +120 -0
package/package.json
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jx-health/rich-editor",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Vue3 Rich editor",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Hosanna <ohosanna@gmail.com>",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"style": "./dist/style.css"
|
|
18
|
+
},
|
|
19
|
+
"./style.css": {
|
|
20
|
+
"import": "./dist/style.css",
|
|
21
|
+
"require": "./dist/style.css"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "vp pack",
|
|
29
|
+
"dev": "vp pack --watch",
|
|
30
|
+
"test": "vp test",
|
|
31
|
+
"check": "vp check",
|
|
32
|
+
"prepublishOnly": "vp run build"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@iconify-json/carbon": "^1.2.18",
|
|
36
|
+
"@iconify/vue": "^5.0.1",
|
|
37
|
+
"@tsdown/css": "0.21.7",
|
|
38
|
+
"@types/lodash": "^4.17.24",
|
|
39
|
+
"@types/node": "^25.5.0",
|
|
40
|
+
"@typescript/native-preview": "7.0.0-dev.20260328.1",
|
|
41
|
+
"@unocss/config": "^66.6.8",
|
|
42
|
+
"@unocss/core": "^66.6.8",
|
|
43
|
+
"@unocss/preset-icons": "66.5.4",
|
|
44
|
+
"bumpp": "^11.0.1",
|
|
45
|
+
"magic-string": "^0.30.21",
|
|
46
|
+
"prism-code-editor": "^5.1.0",
|
|
47
|
+
"prosemirror-model": "^1.25.4",
|
|
48
|
+
"rolldown-plugin-unocss": "^0.1.0",
|
|
49
|
+
"sass-embedded": "^1.99.0",
|
|
50
|
+
"typescript": "catalog:",
|
|
51
|
+
"unocss": "^66.6.8",
|
|
52
|
+
"unocss-preset-animations": "^1.3.0",
|
|
53
|
+
"unocss-preset-shadcn": "^1.0.1",
|
|
54
|
+
"unplugin-auto-import": "^21.0.0",
|
|
55
|
+
"unplugin-vue": "^7.1.1",
|
|
56
|
+
"unplugin-vue-components": "^32.0.0",
|
|
57
|
+
"vite-plus": "^0.1.14",
|
|
58
|
+
"vue-tsc": "catalog:"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@tiptap/core": "^3.23.1",
|
|
62
|
+
"@tiptap/extension-blockquote": "^3.23.1",
|
|
63
|
+
"@tiptap/extension-bold": "^3.23.1",
|
|
64
|
+
"@tiptap/extension-bubble-menu": "^3.23.1",
|
|
65
|
+
"@tiptap/extension-bullet-list": "^3.23.1",
|
|
66
|
+
"@tiptap/extension-character-count": "^3.23.1",
|
|
67
|
+
"@tiptap/extension-code": "^3.23.1",
|
|
68
|
+
"@tiptap/extension-color": "^3.23.1",
|
|
69
|
+
"@tiptap/extension-document": "^3.23.1",
|
|
70
|
+
"@tiptap/extension-dropcursor": "^3.23.1",
|
|
71
|
+
"@tiptap/extension-focus": "^3.23.1",
|
|
72
|
+
"@tiptap/extension-font-family": "^3.23.1",
|
|
73
|
+
"@tiptap/extension-gapcursor": "^3.23.1",
|
|
74
|
+
"@tiptap/extension-hard-break": "^3.23.1",
|
|
75
|
+
"@tiptap/extension-heading": "^3.23.1",
|
|
76
|
+
"@tiptap/extension-highlight": "^3.23.1",
|
|
77
|
+
"@tiptap/extension-history": "^3.23.1",
|
|
78
|
+
"@tiptap/extension-horizontal-rule": "^3.23.1",
|
|
79
|
+
"@tiptap/extension-image": "^3.23.1",
|
|
80
|
+
"@tiptap/extension-italic": "^3.23.1",
|
|
81
|
+
"@tiptap/extension-link": "^3.23.1",
|
|
82
|
+
"@tiptap/extension-list-item": "^3.23.1",
|
|
83
|
+
"@tiptap/extension-ordered-list": "^3.23.1",
|
|
84
|
+
"@tiptap/extension-paragraph": "^3.23.1",
|
|
85
|
+
"@tiptap/extension-placeholder": "^3.23.1",
|
|
86
|
+
"@tiptap/extension-strike": "^3.23.1",
|
|
87
|
+
"@tiptap/extension-subscript": "^3.23.1",
|
|
88
|
+
"@tiptap/extension-superscript": "^3.23.1",
|
|
89
|
+
"@tiptap/extension-table": "^3.23.1",
|
|
90
|
+
"@tiptap/extension-table-cell": "^3.23.1",
|
|
91
|
+
"@tiptap/extension-table-header": "^3.23.1",
|
|
92
|
+
"@tiptap/extension-table-row": "^3.23.1",
|
|
93
|
+
"@tiptap/extension-task-item": "^3.23.1",
|
|
94
|
+
"@tiptap/extension-task-list": "^3.23.1",
|
|
95
|
+
"@tiptap/extension-text": "^3.23.1",
|
|
96
|
+
"@tiptap/extension-text-align": "^3.23.1",
|
|
97
|
+
"@tiptap/extension-text-style": "^3.23.1",
|
|
98
|
+
"@tiptap/extension-underline": "^3.23.1",
|
|
99
|
+
"@tiptap/pm": "^3.23.1",
|
|
100
|
+
"@tiptap/suggestion": "^3.23.1",
|
|
101
|
+
"@tiptap/vue-3": "^3.23.1",
|
|
102
|
+
"@vueuse/core": "13.9.0",
|
|
103
|
+
"class-variance-authority": "^0.7.1",
|
|
104
|
+
"clsx": "^2.1.1",
|
|
105
|
+
"hotkeys-js": "^4.0.4",
|
|
106
|
+
"lodash": "^4.18.1",
|
|
107
|
+
"lucide-vue-next": "^1.0.0",
|
|
108
|
+
"reka-ui": "^2.9.7",
|
|
109
|
+
"tailwind-merge": "^3.5.0",
|
|
110
|
+
"tippy.js": "^6.3.7",
|
|
111
|
+
"vue": "catalog:",
|
|
112
|
+
"vue-sonner": "^2.0.9",
|
|
113
|
+
"y-prosemirror": "^1.3.7"
|
|
114
|
+
},
|
|
115
|
+
"inlinedDependencies": {
|
|
116
|
+
"@iconify/vue": "5.0.1",
|
|
117
|
+
"prism-code-editor": "5.1.0",
|
|
118
|
+
"prosemirror-model": "1.25.4"
|
|
119
|
+
}
|
|
120
|
+
}
|