@mhamz.01/easyflow-texteditor 0.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/dist/index.css +4845 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +251 -0
- package/dist/index.d.ts +251 -0
- package/dist/index.js +7885 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +7902 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mhamz.01/easyflow-texteditor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A rich text editor built on Tiptap",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"*.css"
|
|
14
|
+
],
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"@tiptap/core": "^3",
|
|
17
|
+
"@tiptap/pm": "^3",
|
|
18
|
+
"@tiptap/react": "^3",
|
|
19
|
+
"react": ">=18",
|
|
20
|
+
"react-dom": ">=18"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@floating-ui/dom": "^1.6.0",
|
|
24
|
+
"@floating-ui/react": "^0.27.16",
|
|
25
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
26
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
27
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
28
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
29
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
30
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
31
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
32
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
33
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
34
|
+
"@tiptap/extension-color": "^3.11.0",
|
|
35
|
+
"@tiptap/extension-floating-menu": "^3.12.0",
|
|
36
|
+
"@tiptap/extension-highlight": "^3.11.0",
|
|
37
|
+
"@tiptap/extension-horizontal-rule": "^3.11.0",
|
|
38
|
+
"@tiptap/extension-image": "^3.11.0",
|
|
39
|
+
"@tiptap/extension-list": "^3.11.0",
|
|
40
|
+
"@tiptap/extension-subscript": "^3.11.0",
|
|
41
|
+
"@tiptap/extension-superscript": "^3.11.0",
|
|
42
|
+
"@tiptap/extension-table": "^3.12.1",
|
|
43
|
+
"@tiptap/extension-table-cell": "^3.11.0",
|
|
44
|
+
"@tiptap/extension-table-header": "^3.11.0",
|
|
45
|
+
"@tiptap/extension-table-row": "^3.11.0",
|
|
46
|
+
"@tiptap/extension-text-align": "^3.11.0",
|
|
47
|
+
"@tiptap/extension-text-style": "^3.11.0",
|
|
48
|
+
"@tiptap/extension-typography": "^3.11.0",
|
|
49
|
+
"@tiptap/extensions": "^3.11.0",
|
|
50
|
+
"@tiptap/pm": "^3",
|
|
51
|
+
"@tiptap/react": "^3",
|
|
52
|
+
"@tiptap/starter-kit": "^3.11.0",
|
|
53
|
+
"@uiw/react-color": "^2.9.2",
|
|
54
|
+
"class-variance-authority": "^0.7.1",
|
|
55
|
+
"clsx": "^2.1.1",
|
|
56
|
+
"cmdk": "^1.1.1",
|
|
57
|
+
"framer-motion": "^12.23.26",
|
|
58
|
+
"icons": "^1.0.0",
|
|
59
|
+
"lodash": "^4.17.21",
|
|
60
|
+
"lodash.throttle": "^4.1.1",
|
|
61
|
+
"lucide-react": "^0.554.0",
|
|
62
|
+
"next": "16.0.7",
|
|
63
|
+
"novel": "^1.0.2",
|
|
64
|
+
"react": ">=18",
|
|
65
|
+
"react-colorful": "^5.6.1",
|
|
66
|
+
"react-dom": ">=18",
|
|
67
|
+
"react-hotkeys-hook": "^5.2.1",
|
|
68
|
+
"react-icons": "^5.5.0",
|
|
69
|
+
"tailwind-merge": "^3.4.0",
|
|
70
|
+
"tiptap-extension-resize-image": "^1.3.2",
|
|
71
|
+
"webfont-loader": "^1.1.0",
|
|
72
|
+
"webfontloader": "^1.6.28"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@tailwindcss/postcss": "^4",
|
|
76
|
+
"@types/lodash.throttle": "^4.1.9",
|
|
77
|
+
"@types/node": "^20",
|
|
78
|
+
"@types/react": "^19",
|
|
79
|
+
"@types/react-dom": "^19",
|
|
80
|
+
"@types/webfontloader": "^1.6.38",
|
|
81
|
+
"esbuild-plugin-sass": "^1.0.1",
|
|
82
|
+
"eslint": "^9",
|
|
83
|
+
"eslint-config-next": "16.0.3",
|
|
84
|
+
"sass": "^1.97.1",
|
|
85
|
+
"tailwindcss": "^4",
|
|
86
|
+
"tsup": "^8.5.1",
|
|
87
|
+
"tw-animate-css": "^1.4.0",
|
|
88
|
+
"typescript": "^5"
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"build:scss": "sass src/styles:dist/styles --no-source-map",
|
|
92
|
+
"build": "npm run build:scss && tsup",
|
|
93
|
+
"prepublishOnly": "npm run build"
|
|
94
|
+
}
|
|
95
|
+
}
|