@brevitaz/brv-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 +348 -0
- package/dist/brv-text-editor.css +395 -0
- package/dist/brv-text-editor.es.js +21716 -0
- package/dist/brv-text-editor.es.js.map +1 -0
- package/dist/brv-text-editor.umd.js +21717 -0
- package/dist/brv-text-editor.umd.js.map +1 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@brevitaz/brv-text-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A fully-functional React rich text editor and preview component inspired by Basecamp 3",
|
|
5
|
+
"author": "Vishal Shukla",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/brv-text-editor.umd.js",
|
|
9
|
+
"module": "./dist/brv-text-editor.es.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/brv-text-editor.es.js",
|
|
13
|
+
"require": "./dist/brv-text-editor.umd.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/brv-text-editor.css": "./dist/brv-text-editor.css"
|
|
16
|
+
},
|
|
17
|
+
"style": "./dist/brv-text-editor.css",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"sideEffects": [
|
|
23
|
+
"*.css"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"rich-text-editor",
|
|
27
|
+
"tiptap",
|
|
28
|
+
"react",
|
|
29
|
+
"wysiwyg",
|
|
30
|
+
"basecamp",
|
|
31
|
+
"prosemirror"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "vite build",
|
|
36
|
+
"build:lib": "vite build --config vite.lib.config.js",
|
|
37
|
+
"preview": "vite preview"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^18.0.0",
|
|
41
|
+
"react-dom": "^18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@tiptap/core": "^2.10.4",
|
|
45
|
+
"@tiptap/extension-blockquote": "^2.10.4",
|
|
46
|
+
"@tiptap/extension-bold": "^2.10.4",
|
|
47
|
+
"@tiptap/extension-bullet-list": "^2.10.4",
|
|
48
|
+
"@tiptap/extension-code": "^2.10.4",
|
|
49
|
+
"@tiptap/extension-code-block": "^2.10.4",
|
|
50
|
+
"@tiptap/extension-color": "^2.10.4",
|
|
51
|
+
"@tiptap/extension-document": "^2.10.4",
|
|
52
|
+
"@tiptap/extension-hard-break": "^2.10.4",
|
|
53
|
+
"@tiptap/extension-heading": "^2.10.4",
|
|
54
|
+
"@tiptap/extension-history": "^2.10.4",
|
|
55
|
+
"@tiptap/extension-horizontal-rule": "^2.10.4",
|
|
56
|
+
"@tiptap/extension-image": "^2.10.4",
|
|
57
|
+
"@tiptap/extension-italic": "^2.10.4",
|
|
58
|
+
"@tiptap/extension-link": "^2.10.4",
|
|
59
|
+
"@tiptap/extension-list-item": "^2.10.4",
|
|
60
|
+
"@tiptap/extension-ordered-list": "^2.10.4",
|
|
61
|
+
"@tiptap/extension-paragraph": "^2.10.4",
|
|
62
|
+
"@tiptap/extension-placeholder": "^2.10.4",
|
|
63
|
+
"@tiptap/extension-strike": "^2.10.4",
|
|
64
|
+
"@tiptap/extension-task-item": "^2.10.4",
|
|
65
|
+
"@tiptap/extension-task-list": "^2.10.4",
|
|
66
|
+
"@tiptap/extension-text": "^2.10.4",
|
|
67
|
+
"@tiptap/extension-text-align": "^2.10.4",
|
|
68
|
+
"@tiptap/extension-text-style": "^2.10.4",
|
|
69
|
+
"@tiptap/extension-underline": "^2.10.4",
|
|
70
|
+
"@tiptap/react": "^2.10.4",
|
|
71
|
+
"lucide-react": "^0.468.0"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/react": "^18.3.18",
|
|
75
|
+
"@types/react-dom": "^18.3.5",
|
|
76
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
77
|
+
"react": "^18.3.1",
|
|
78
|
+
"react-dom": "^18.3.1",
|
|
79
|
+
"vite": "^6.0.5"
|
|
80
|
+
}
|
|
81
|
+
}
|