rte-builder 2.0.5 → 2.0.7

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 CHANGED
@@ -1,123 +1,124 @@
1
- {
2
- "name": "rte-builder",
3
- "version": "2.0.5",
4
- "description": "A universal Rich Text Editor for React supporting multiple backends (TipTap, Slate, Lexical) with a unified API, full toolbar customization, and zero licensing costs",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
13
- },
14
- "./styles.css": "./dist/index.css",
15
- "./dist/index.css": "./dist/index.css"
16
- },
17
- "files": [
18
- "dist"
19
- ],
20
- "scripts": {
21
- "dev": "tsup --watch",
22
- "build": "tsup",
23
- "typecheck": "tsc --noEmit",
24
- "prepublishOnly": "npm run build",
25
- "demo": "cd demo && npm run dev",
26
- "demo:install": "cd demo && npm install",
27
- "demo:build": "npm run build && cd demo && npm run build"
28
- },
29
- "keywords": [
30
- "react",
31
- "editor",
32
- "wysiwyg",
33
- "tiptap",
34
- "slate",
35
- "lexical",
36
- "rich-text",
37
- "rich-text-editor",
38
- "contenteditable",
39
- "prosemirror",
40
- "text-editor",
41
- "html-editor",
42
- "markdown",
43
- "toolbar",
44
- "formatting"
45
- ],
46
- "author": "saikiran949",
47
- "license": "MIT",
48
- "repository": {
49
- "type": "git",
50
- "url": "https://github.com/saikiran949/rte-builder.git"
51
- },
52
- "homepage": "https://github.com/saikiran949/rte-builder#readme",
53
- "bugs": {
54
- "url": "https://github.com/saikiran949/rte-builder/issues"
55
- },
56
- "peerDependencies": {
57
- "react": "^18.0.0 || ^19.0.0",
58
- "react-dom": "^18.0.0 || ^19.0.0"
59
- },
60
- "dependencies": {
61
- "@lexical/code": "^0.39.0",
62
- "@lexical/history": "^0.39.0",
63
- "@lexical/link": "^0.39.0",
64
- "@lexical/list": "^0.39.0",
65
- "@lexical/react": "^0.39.0",
66
- "@lexical/rich-text": "^0.39.0",
67
- "@lexical/selection": "^0.39.0",
68
- "@lexical/table": "^0.39.0",
69
- "@lexical/utils": "^0.39.0",
70
- "@tiptap/core": "^2.10.3",
71
- "@tiptap/extension-blockquote": "^2.27.2",
72
- "@tiptap/extension-bold": "^2.10.3",
73
- "@tiptap/extension-bullet-list": "^2.10.3",
74
- "@tiptap/extension-character-count": "^2.10.3",
75
- "@tiptap/extension-code": "^2.10.3",
76
- "@tiptap/extension-code-block-lowlight": "^2.10.3",
77
- "@tiptap/extension-color": "^2.10.3",
78
- "@tiptap/extension-document": "^2.10.3",
79
- "@tiptap/extension-dropcursor": "^2.10.3",
80
- "@tiptap/extension-font-family": "^2.10.3",
81
- "@tiptap/extension-gapcursor": "^2.10.3",
82
- "@tiptap/extension-hard-break": "^2.10.3",
83
- "@tiptap/extension-heading": "^2.10.3",
84
- "@tiptap/extension-highlight": "^2.10.3",
85
- "@tiptap/extension-history": "^2.10.3",
86
- "@tiptap/extension-horizontal-rule": "^2.10.3",
87
- "@tiptap/extension-image": "^2.10.3",
88
- "@tiptap/extension-italic": "^2.10.3",
89
- "@tiptap/extension-link": "^2.10.3",
90
- "@tiptap/extension-list-item": "^2.10.3",
91
- "@tiptap/extension-ordered-list": "^2.10.3",
92
- "@tiptap/extension-paragraph": "^2.10.3",
93
- "@tiptap/extension-placeholder": "^2.10.3",
94
- "@tiptap/extension-strike": "^2.10.3",
95
- "@tiptap/extension-subscript": "^2.10.3",
96
- "@tiptap/extension-superscript": "^2.10.3",
97
- "@tiptap/extension-table": "^2.10.3",
98
- "@tiptap/extension-table-cell": "^2.10.3",
99
- "@tiptap/extension-table-header": "^2.10.3",
100
- "@tiptap/extension-table-row": "^2.10.3",
101
- "@tiptap/extension-text": "^2.10.3",
102
- "@tiptap/extension-text-align": "^2.10.3",
103
- "@tiptap/extension-text-style": "^2.10.3",
104
- "@tiptap/extension-underline": "^2.10.3",
105
- "@tiptap/pm": "^2.10.3",
106
- "@tiptap/react": "^2.10.3",
107
- "lexical": "^0.39.0",
108
- "lowlight": "^3.1.0",
109
- "lucide-react": "^0.563.0",
110
- "slate": "^0.123.0",
111
- "slate-history": "^0.113.1",
112
- "slate-react": "^0.123.0"
113
- },
114
- "devDependencies": {
115
- "@types/node": "^25.0.10",
116
- "@types/react": "^18.3.12",
117
- "@types/react-dom": "^18.3.1",
118
- "react": "^18.3.1",
119
- "react-dom": "^18.3.1",
120
- "tsup": "^8.3.5",
121
- "typescript": "^5.7.2"
122
- }
123
- }
1
+ {
2
+ "name": "rte-builder",
3
+ "version": "2.0.7",
4
+ "description": "A universal Rich Text Editor for React supporting multiple backends (TipTap, Slate, Lexical) with a unified API, full toolbar customization, and zero licensing costs",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./styles.css": "./dist/index.css",
15
+ "./dist/index.css": "./dist/index.css"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "dev": "tsup --watch",
22
+ "build": "tsup",
23
+ "typecheck": "tsc --noEmit",
24
+ "prepublishOnly": "npm run build",
25
+ "demo": "cd demo && npm run dev",
26
+ "demo:install": "cd demo && npm install",
27
+ "demo:build": "npm run build && cd demo && npm run build"
28
+ },
29
+ "keywords": [
30
+ "react",
31
+ "editor",
32
+ "wysiwyg",
33
+ "tiptap",
34
+ "slate",
35
+ "lexical",
36
+ "rich-text",
37
+ "rich-text-editor",
38
+ "contenteditable",
39
+ "prosemirror",
40
+ "text-editor",
41
+ "html-editor",
42
+ "markdown",
43
+ "toolbar",
44
+ "formatting"
45
+ ],
46
+ "author": "saikiran949",
47
+ "license": "MIT",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "https://github.com/saikiran949/rte-builder.git"
51
+ },
52
+ "homepage": "https://github.com/saikiran949/rte-builder#readme",
53
+ "bugs": {
54
+ "url": "https://github.com/saikiran949/rte-builder/issues"
55
+ },
56
+ "peerDependencies": {
57
+ "react": "^18.0.0 || ^19.0.0",
58
+ "react-dom": "^18.0.0 || ^19.0.0"
59
+ },
60
+ "dependencies": {
61
+ "@lexical/code": "^0.39.0",
62
+ "@lexical/history": "^0.39.0",
63
+ "@lexical/link": "^0.39.0",
64
+ "@lexical/list": "^0.39.0",
65
+ "@lexical/react": "^0.39.0",
66
+ "@lexical/rich-text": "^0.39.0",
67
+ "@lexical/selection": "^0.39.0",
68
+ "@lexical/table": "^0.39.0",
69
+ "@lexical/utils": "^0.39.0",
70
+ "@tiptap/core": "^2.10.3",
71
+ "@tiptap/extension-blockquote": "^2.27.2",
72
+ "@tiptap/extension-bold": "^2.10.3",
73
+ "@tiptap/extension-bullet-list": "^2.10.3",
74
+ "@tiptap/extension-character-count": "^2.10.3",
75
+ "@tiptap/extension-code": "^2.10.3",
76
+ "@tiptap/extension-code-block-lowlight": "^2.10.3",
77
+ "@tiptap/extension-color": "^2.10.3",
78
+ "@tiptap/extension-document": "^2.10.3",
79
+ "@tiptap/extension-dropcursor": "^2.10.3",
80
+ "@tiptap/extension-font-family": "^2.10.3",
81
+ "@tiptap/extension-gapcursor": "^2.10.3",
82
+ "@tiptap/extension-hard-break": "^2.10.3",
83
+ "@tiptap/extension-heading": "^2.10.3",
84
+ "@tiptap/extension-highlight": "^2.10.3",
85
+ "@tiptap/extension-history": "^2.10.3",
86
+ "@tiptap/extension-horizontal-rule": "^2.10.3",
87
+ "@tiptap/extension-image": "^2.10.3",
88
+ "@tiptap/extension-italic": "^2.10.3",
89
+ "@tiptap/extension-link": "^2.10.3",
90
+ "@tiptap/extension-list-item": "^2.10.3",
91
+ "@tiptap/extension-ordered-list": "^2.10.3",
92
+ "@tiptap/extension-paragraph": "^2.10.3",
93
+ "@tiptap/extension-placeholder": "^2.10.3",
94
+ "@tiptap/extension-strike": "^2.10.3",
95
+ "@tiptap/extension-subscript": "^2.10.3",
96
+ "@tiptap/extension-superscript": "^2.10.3",
97
+ "@tiptap/extension-table": "^2.10.3",
98
+ "@tiptap/extension-table-cell": "^2.10.3",
99
+ "@tiptap/extension-table-header": "^2.10.3",
100
+ "@tiptap/extension-table-row": "^2.10.3",
101
+ "@tiptap/extension-text": "^2.10.3",
102
+ "@tiptap/extension-text-align": "^2.10.3",
103
+ "@tiptap/extension-text-style": "^2.10.3",
104
+ "@tiptap/extension-underline": "^2.10.3",
105
+ "@tiptap/pm": "^2.10.3",
106
+ "@tiptap/react": "^2.10.3",
107
+ "is-hotkey": "^0.2.0",
108
+ "lexical": "^0.39.0",
109
+ "lowlight": "^3.1.0",
110
+ "lucide-react": "^0.563.0",
111
+ "slate": "^0.123.0",
112
+ "slate-history": "^0.113.1",
113
+ "slate-react": "^0.123.0"
114
+ },
115
+ "devDependencies": {
116
+ "@types/node": "^25.0.10",
117
+ "@types/react": "^18.3.12",
118
+ "@types/react-dom": "^18.3.1",
119
+ "react": "^18.3.1",
120
+ "react-dom": "^18.3.1",
121
+ "tsup": "^8.3.5",
122
+ "typescript": "^5.7.2"
123
+ }
124
+ }