smart-editor-v3 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/package.json ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "smart-editor-v3",
3
+ "type": "module",
4
+ "version": "1.0.0",
5
+ "exports": {
6
+ ".": {
7
+ "import": "./dist/smart-editor-package.js"
8
+ },
9
+ "./style": {
10
+ "import": "./dist/style.css"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "dev": "vite",
18
+ "build": "vite build",
19
+ "preview": "vite preview",
20
+ "lint:fix": "eslint --fix"
21
+ },
22
+ "dependencies": {
23
+ "@arco-design/color": "^0.4.0",
24
+ "@tiptap-pro/extension-details": "^2.11.9",
25
+ "@tiptap-pro/extension-details-content": "^2.11.9",
26
+ "@tiptap-pro/extension-details-summary": "^2.11.9",
27
+ "@tiptap-pro/extension-drag-handle": "^2.11.9",
28
+ "@tiptap-pro/extension-mathematics": "^2.11.3",
29
+ "@tiptap-pro/extension-node-range": "^2.11.9",
30
+ "@tiptap-pro/extension-table-of-contents": "^2.11.3",
31
+ "@tiptap/extension-blockquote": "^2.7.4",
32
+ "@tiptap/extension-bold": "^2.7.2",
33
+ "@tiptap/extension-bullet-list": "^2.7.4",
34
+ "@tiptap/extension-character-count": "^2.7.2",
35
+ "@tiptap/extension-color": "^2.7.2",
36
+ "@tiptap/extension-dropcursor": "^2.7.2",
37
+ "@tiptap/extension-focus": "^2.7.2",
38
+ "@tiptap/extension-font-family": "^2.7.2",
39
+ "@tiptap/extension-highlight": "^2.7.2",
40
+ "@tiptap/extension-horizontal-rule": "^2.7.4",
41
+ "@tiptap/extension-image": "^2.8.0",
42
+ "@tiptap/extension-link": "^2.8.0",
43
+ "@tiptap/extension-list-item": "^2.7.4",
44
+ "@tiptap/extension-list-keymap": "^2.7.4",
45
+ "@tiptap/extension-ordered-list": "^2.7.4",
46
+ "@tiptap/extension-placeholder": "^2.9.1",
47
+ "@tiptap/extension-subscript": "^2.7.2",
48
+ "@tiptap/extension-superscript": "^2.7.2",
49
+ "@tiptap/extension-table-cell": "^2.8.0",
50
+ "@tiptap/extension-table-header": "^2.8.0",
51
+ "@tiptap/extension-table-row": "^2.8.0",
52
+ "@tiptap/extension-text-align": "^2.7.4",
53
+ "@tiptap/extension-text-style": "^2.7.2",
54
+ "@tiptap/extension-typography": "^2.7.2",
55
+ "@tiptap/extension-underline": "^2.7.2",
56
+ "@tiptap/pm": "^2.7.2",
57
+ "@tiptap/starter-kit": "^2.7.2",
58
+ "@tiptap/vue-3": "^2.7.2",
59
+ "@vueuse/components": "^11.1.0",
60
+ "@vueuse/core": "^11.0.3",
61
+ "dayjs": "^1.11.13",
62
+ "dexie": "^4.0.9",
63
+ "glob": "^11.0.0",
64
+ "hotkeys-js": "^3.13.7",
65
+ "lodash-es": "^4.17.21",
66
+ "naive-ui": "^2.39.0",
67
+ "prism-code-editor": "^3.4.0",
68
+ "vue-i18n": "^10.0.1"
69
+ },
70
+ "devDependencies": {
71
+ "@antfu/eslint-config": "^3.3.2",
72
+ "@iconify/json": "^2.2.245",
73
+ "@unocss/eslint-config": "^0.62.3",
74
+ "@unocss/eslint-plugin": "^0.62.3",
75
+ "@unocss/preset-rem-to-px": "^0.62.3",
76
+ "@vitejs/plugin-vue": "^5.1.3",
77
+ "@vitejs/plugin-vue-jsx": "^4.0.1",
78
+ "axios": "^1.7.7",
79
+ "eslint": "^9.9.1",
80
+ "eslint-plugin-format": "^0.1.2",
81
+ "esno": "^4.7.0",
82
+ "fs-extra": "^11.2.0",
83
+ "less": "^4.2.0",
84
+ "lint-staged": "^15.2.10",
85
+ "rollup-plugin-visualizer": "^5.12.0",
86
+ "simple-git-hooks": "^2.11.1",
87
+ "taze": "^0.16.7",
88
+ "unocss": "^0.62.3",
89
+ "unplugin-auto-import": "^0.18.3",
90
+ "unplugin-vue-components": "^0.27.4",
91
+ "vite": "^5.4.3",
92
+ "vite-plugin-router-warn": "^1.0.0",
93
+ "vite-plugin-vue-devtools": "^7.4.4",
94
+ "vue": "^3.5.3"
95
+ },
96
+ "lint-staged": {
97
+ "*": "eslint --fix"
98
+ }
99
+ }