customise-text-editor 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 +70 -0
- package/dist/customise-text-editor.css +2 -0
- package/dist/customise-text-editor.es.js +14811 -0
- package/dist/customise-text-editor.umd.js +147 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "customise-text-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A highly customizable, production-ready Rich Text Editor for React, powered by Tiptap.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
|
|
7
|
+
"main": "./dist/customise-text-editor.umd.js",
|
|
8
|
+
"module": "./dist/customise-text-editor.es.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/customise-text-editor.es.js",
|
|
14
|
+
"require": "./dist/customise-text-editor.umd.js",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./style.css": "./dist/customise-text-editor.css"
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"*.css"
|
|
26
|
+
],
|
|
27
|
+
|
|
28
|
+
"scripts": {
|
|
29
|
+
"dev": "vite",
|
|
30
|
+
"build": "tsc -b && vite build",
|
|
31
|
+
"lint": "eslint .",
|
|
32
|
+
"preview": "vite preview"
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
37
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@tiptap/extension-character-count": "^3.22.0",
|
|
42
|
+
"@tiptap/extension-color": "^3.22.0",
|
|
43
|
+
"@tiptap/extension-font-family": "^3.22.0",
|
|
44
|
+
"@tiptap/extension-highlight": "^3.22.0",
|
|
45
|
+
"@tiptap/extension-link": "^3.22.0",
|
|
46
|
+
"@tiptap/extension-placeholder": "^3.22.0",
|
|
47
|
+
"@tiptap/extension-text-style": "^3.22.0",
|
|
48
|
+
"@tiptap/extension-underline": "^3.22.0",
|
|
49
|
+
"@tiptap/pm": "^3.22.0",
|
|
50
|
+
"@tiptap/react": "^3.22.0",
|
|
51
|
+
"@tiptap/starter-kit": "^3.22.0",
|
|
52
|
+
"clsx": "^2.1.1",
|
|
53
|
+
"lucide-react": "^1.7.0",
|
|
54
|
+
"tailwind-merge": "^3.5.0"
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/js": "^9.39.4",
|
|
59
|
+
"@types/node": "^24.12.0",
|
|
60
|
+
"@types/react": "^19.2.14",
|
|
61
|
+
"@types/react-dom": "^19.2.3",
|
|
62
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
63
|
+
"eslint": "^9.39.4",
|
|
64
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
65
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
66
|
+
"globals": "^17.4.0",
|
|
67
|
+
"typescript": "~5.9.3",
|
|
68
|
+
"typescript-eslint": "^8.57.0",
|
|
69
|
+
"vite": "^8.0.1",
|
|
70
|
+
"vite-plugin-dts": "^4.5.4"
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
"keywords": [
|
|
74
|
+
"react editor",
|
|
75
|
+
"rich text editor",
|
|
76
|
+
"tiptap",
|
|
77
|
+
"wysiwyg",
|
|
78
|
+
"react components",
|
|
79
|
+
"text editor",
|
|
80
|
+
"custom editor"
|
|
81
|
+
],
|
|
82
|
+
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
|
|
85
|
+
"publishConfig": {
|
|
86
|
+
"access": "public"
|
|
87
|
+
}
|
|
88
|
+
}
|