@bigbinary/neeto-editor 0.3.11 → 0.3.14
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/build/index.js +35 -18
- package/package.json +5 -8
- package/webpack.config.js +1 -0
- package/webpack.dev.config.js +1 -0
- package/webpack.example.config.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-editor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"description": "Neeto Editor is the library that drives the rich text experience in all Neeto products built at BigBinary",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "BigBinary",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@bigbinary/neeto-icons": "^1.8.
|
|
15
|
+
"@bigbinary/neeto-icons": "^1.8.25",
|
|
16
16
|
"@tailwindcss/typography": "^0.4.0",
|
|
17
17
|
"@tippyjs/react": "^4.2.6",
|
|
18
18
|
"@tiptap/extension-bubble-menu": "^2.0.0-beta.18",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"@tiptap/extension-highlight": "^2.0.0-beta.13",
|
|
25
25
|
"@tiptap/extension-image": "^2.0.0-beta.13",
|
|
26
26
|
"@tiptap/extension-link": "^2.0.0-beta.18",
|
|
27
|
-
"@tiptap/extension-mention": "^2.0.0-beta.
|
|
27
|
+
"@tiptap/extension-mention": "^2.0.0-beta.80",
|
|
28
28
|
"@tiptap/extension-placeholder": "^2.0.0-beta.18",
|
|
29
29
|
"@tiptap/extension-text-style": "^2.0.0-beta.17",
|
|
30
30
|
"@tiptap/extension-typography": "^2.0.0-beta.11",
|
|
31
31
|
"@tiptap/extension-underline": "^2.0.0-beta.21",
|
|
32
32
|
"@tiptap/react": "^2.0.0-beta.37",
|
|
33
|
-
"@tiptap/starter-kit": "^2.0.0-beta.
|
|
33
|
+
"@tiptap/starter-kit": "^2.0.0-beta.57",
|
|
34
34
|
"@tiptap/suggestion": "^2.0.0-beta.55",
|
|
35
35
|
"@uppy/core": "^2.1.2",
|
|
36
36
|
"@uppy/react": "^2.1.1",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"dompurify": "^2.3.3",
|
|
42
42
|
"emoji-mart": "^3.0.1",
|
|
43
43
|
"highlight.js": "^11.3.1",
|
|
44
|
-
"lodash.isempty": "^4.4.0",
|
|
45
44
|
"lodash.isplainobject": "^4.0.6",
|
|
46
45
|
"lowlight": "^1.20.0",
|
|
47
46
|
"marked": "^4.0.7",
|
|
48
47
|
"peer-deps-externals-webpack-plugin": "1.0.4",
|
|
48
|
+
"ramda": "^0.28.0",
|
|
49
49
|
"react-hotkeys-hook": "^3.4.4",
|
|
50
50
|
"react-icons": "^4.2.0",
|
|
51
51
|
"react-masonry-infinite": "^1.2.2",
|
|
@@ -120,8 +120,5 @@
|
|
|
120
120
|
"repository": {
|
|
121
121
|
"type": "git",
|
|
122
122
|
"url": "git+https://github.com/bigbinary/neeto-editor-tiptap.git"
|
|
123
|
-
},
|
|
124
|
-
"resolutions": {
|
|
125
|
-
"prosemirror-model": "1.16.1"
|
|
126
123
|
}
|
|
127
124
|
}
|
package/webpack.config.js
CHANGED
package/webpack.dev.config.js
CHANGED