@layers-app/editor 0.5.8-optimization → 0.5.10-optimization
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 +0 -19
- package/dist/ExcalidrawComponent-D7Z_2awF.cjs +1 -0
- package/dist/ExcalidrawComponent-Re4zFgLg.js +283 -0
- package/dist/InlineImageComponent-DHgCaPNk.cjs +1 -0
- package/dist/InlineImageComponent-kXhZcmF6.js +265 -0
- package/dist/collaboration-C7xVk0Zj.cjs +4 -0
- package/dist/collaboration-Cn7KizEJ.js +5997 -0
- package/dist/excalidraw-C-6bid_P.js +16497 -0
- package/dist/excalidraw-DpwKTNBz.cjs +574 -0
- package/dist/index-B4yOqKUQ.cjs +1 -0
- package/dist/index-BZu8Qnrg.cjs +1 -0
- package/dist/index-CFA9Drk2.cjs +16 -0
- package/dist/index-CX5msaMB.js +296 -0
- package/dist/index-CbQX0N2c.js +136 -0
- package/dist/index-DEC5JR_F.js +60 -0
- package/dist/index-Dan3tqoj.cjs +1 -0
- package/dist/index-WCOc4LNL.js +16600 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +12 -13
- package/dist/lexical-2rxs76dr.cjs +41 -0
- package/dist/lexical-C60GkwxR.js +13122 -0
- package/dist/lexical-code-DKIWiZdJ.js +604 -0
- package/dist/lexical-code-VafvPacU.cjs +9 -0
- package/dist/lexical-collab-1tX9tFVC.js +1025 -0
- package/dist/lexical-collab-Nk2LVpJv.cjs +1 -0
- package/dist/lexical-file-C52Mze5k.cjs +1 -0
- package/dist/lexical-file-DjHP4vVw.js +43 -0
- package/dist/lexical-markdown-BSl_ahWw.cjs +12 -0
- package/dist/lexical-markdown-DcEwQQba.js +488 -0
- package/dist/lodash-3PEMjFQT.cjs +1 -0
- package/dist/lodash-jftOdrxX.js +711 -0
- package/dist/stats.html +4949 -0
- package/dist/vendor-BrXDSyZX.js +136433 -0
- package/dist/vendor-Bt6Lma3y.cjs +2469 -0
- package/package.json +42 -74
- package/dist/layers.8yssqxrI.js +0 -6774
- package/dist/layers.B8z-e4Vg.js +0 -7
- package/dist/layers.BQLznd92.js +0 -4
- package/dist/layers.BVRvG1mv.js +0 -3
- package/dist/layers.BjCQNcdJ.js +0 -341
- package/dist/layers.BnVn2uMi.js +0 -7723
- package/dist/layers.CLcioDq5.js +0 -2511
- package/dist/layers.CTSBFg3j.js +0 -1
- package/dist/layers.CoCZDINv.js +0 -864
- package/dist/layers.D0ZtUpST.js +0 -2
- package/dist/layers.D2zjLyjP.js +0 -6
- package/dist/layers.DNCgFYS7.js +0 -27
- package/dist/layers.Dt_Jdn4Y.js +0 -2227
- package/dist/layers.DwX5sVtx.js +0 -1
- package/dist/layers.QjAkD17S.js +0 -3677
- package/dist/layers.pre7B8K-.js +0 -530
package/package.json
CHANGED
|
@@ -1,30 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layers-app/editor",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.10-optimization",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"description": "Powerful rich-text editor ",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"editor",
|
|
9
|
-
"rich-text",
|
|
10
|
-
"wysiwyg",
|
|
11
|
-
"react",
|
|
12
|
-
"typescript",
|
|
13
|
-
"collaboration",
|
|
14
|
-
"comments",
|
|
15
|
-
"markdown",
|
|
16
|
-
"layers"
|
|
17
|
-
],
|
|
18
|
-
"author": "Layers Team",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"repository": {
|
|
21
|
-
"type": "git",
|
|
22
|
-
"url": "https://www.npmjs.com/package/@layers-app/editor/"
|
|
23
|
-
},
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://www.npmjs.com/package/@layers-app/editor/"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://www.npmjs.com/package/@layers-app/editor/",
|
|
28
6
|
"scripts": {
|
|
29
7
|
"start": "VITE_LAYERS=true vite --mode full ",
|
|
30
8
|
"start:specific": "VITE_LAYERS=false vite --mode full ",
|
|
@@ -52,29 +30,22 @@
|
|
|
52
30
|
],
|
|
53
31
|
"main": "dist/index.js",
|
|
54
32
|
"types": "dist/index.d.ts",
|
|
55
|
-
"
|
|
56
|
-
".": {
|
|
57
|
-
"types": "./dist/index.d.ts",
|
|
58
|
-
"import": "./dist/index.js",
|
|
59
|
-
"require": "./dist/index.cjs"
|
|
60
|
-
},
|
|
61
|
-
"./types": {
|
|
62
|
-
"types": "./dist/types.d.ts"
|
|
63
|
-
},
|
|
64
|
-
"./package.json": "./package.json"
|
|
65
|
-
},
|
|
66
|
-
"sideEffects": [
|
|
67
|
-
"*.css",
|
|
68
|
-
"*.scss"
|
|
69
|
-
],
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@eslint/js": "^9.9.0",
|
|
33
|
+
"dependencies": {
|
|
72
34
|
"@excalidraw/excalidraw": "^0.18.0",
|
|
73
|
-
"@layers-app/shared": ">=0.0.44",
|
|
74
35
|
"@lexical/file": "^0.38.2",
|
|
75
36
|
"@lexical/headless": "^0.38.2",
|
|
76
37
|
"@lexical/markdown": "^0.38.2",
|
|
77
38
|
"@lexical/react": "^0.38.2",
|
|
39
|
+
"@tanstack/react-query": "^5.64.1",
|
|
40
|
+
"install": "^0.13.0",
|
|
41
|
+
"lexical": "^0.38.2",
|
|
42
|
+
"npm": "^11.0.0",
|
|
43
|
+
"y-websocket": "^1.5.3",
|
|
44
|
+
"yjs": "^13.6.20"
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@eslint/js": "^9.9.0",
|
|
78
49
|
"@mantine/core": "^8.0.0",
|
|
79
50
|
"@mantine/dropzone": "^8.0.0",
|
|
80
51
|
"@mantine/form": "^8.0.0",
|
|
@@ -108,7 +79,6 @@
|
|
|
108
79
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
109
80
|
"glob": "^10.3.10",
|
|
110
81
|
"i18next": "^25.5.2",
|
|
111
|
-
"lexical": "^0.38.2",
|
|
112
82
|
"lodash-es": "^4.17.21",
|
|
113
83
|
"postcss-import": "^16.1.0",
|
|
114
84
|
"postcss-preset-mantine": "^1.17.0",
|
|
@@ -116,11 +86,9 @@
|
|
|
116
86
|
"prettier-plugin-organize-attributes": "^1.0.0",
|
|
117
87
|
"proper-lockfile": "^4.1.2",
|
|
118
88
|
"react-i18next": "^15.7.3",
|
|
119
|
-
"react-selecto": "^1.26.3",
|
|
120
89
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
121
90
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
122
91
|
"sass": "^1.71.1",
|
|
123
|
-
"swagger-ui-react": "^5.30.2",
|
|
124
92
|
"terser": "^5.39.0",
|
|
125
93
|
"typescript": "^5.5.4",
|
|
126
94
|
"typescript-eslint": "^8.2.0",
|
|
@@ -129,9 +97,7 @@
|
|
|
129
97
|
"vite-plugin-css-injected-by-js": "^3.5.0",
|
|
130
98
|
"vite-plugin-dts": "^4.0.0-beta.1",
|
|
131
99
|
"vite-plugin-static-copy": "^2.3.2",
|
|
132
|
-
"vite-plugin-svgr": "^4.2.0"
|
|
133
|
-
"y-websocket": "^1.5.3",
|
|
134
|
-
"yjs": "^13.6.20"
|
|
100
|
+
"vite-plugin-svgr": "^4.2.0"
|
|
135
101
|
},
|
|
136
102
|
"overrides": {
|
|
137
103
|
"nanoid": "^5.0.9",
|
|
@@ -157,42 +123,44 @@
|
|
|
157
123
|
}
|
|
158
124
|
},
|
|
159
125
|
"peerDependencies": {
|
|
160
|
-
"@
|
|
161
|
-
"@
|
|
162
|
-
"@
|
|
163
|
-
"@
|
|
164
|
-
"@
|
|
165
|
-
"@
|
|
166
|
-
"@mantine/
|
|
167
|
-
"@mantine/dropzone": "^8.0.0",
|
|
168
|
-
"@mantine/form": "^8.0.0",
|
|
169
|
-
"@mantine/hooks": "^8.0.0",
|
|
170
|
-
"@mantine/modals": "^8.0.0",
|
|
126
|
+
"@mantine/core": ">=8.0.0",
|
|
127
|
+
"@mantine/dropzone": ">=8.0.0",
|
|
128
|
+
"@mantine/form": ">=8.0.0",
|
|
129
|
+
"@mantine/hooks": ">=8.0.0",
|
|
130
|
+
"@mantine/modals": ">=8.0.0",
|
|
131
|
+
"@mantine/notifications": ">=8.0.0",
|
|
132
|
+
"@mantine/carousel": ">=8.0.0",
|
|
171
133
|
"@tabler/icons-react": ">=3.7.0",
|
|
172
|
-
"
|
|
173
|
-
"i18next": ">=25.5.2",
|
|
174
|
-
"lexical": ">=0.38.2",
|
|
134
|
+
"i18next": "^25.5.2",
|
|
175
135
|
"lodash-es": ">=4.17.21",
|
|
176
136
|
"react": "^18.3.1",
|
|
177
137
|
"react-dom": "^18.3.1",
|
|
178
|
-
"react-i18next": "
|
|
179
|
-
"react-selecto": "
|
|
180
|
-
"swagger-ui-react": "^5.
|
|
181
|
-
"
|
|
182
|
-
"yjs": ">=13.6.20"
|
|
138
|
+
"react-i18next": "^15.7.3",
|
|
139
|
+
"react-selecto": "^1.26.3",
|
|
140
|
+
"swagger-ui-react": "^5.27.1",
|
|
141
|
+
"@layers-app/shared": "^0.1.0"
|
|
183
142
|
},
|
|
184
143
|
"peerDependenciesMeta": {
|
|
185
|
-
"@
|
|
186
|
-
"optional":
|
|
144
|
+
"@mantine/core": {
|
|
145
|
+
"optional": false
|
|
146
|
+
},
|
|
147
|
+
"@mantine/dropzone": {
|
|
148
|
+
"optional": false
|
|
149
|
+
},
|
|
150
|
+
"@mantine/form": {
|
|
151
|
+
"optional": false
|
|
152
|
+
},
|
|
153
|
+
"@mantine/hooks": {
|
|
154
|
+
"optional": false
|
|
187
155
|
},
|
|
188
|
-
"
|
|
189
|
-
"optional":
|
|
156
|
+
"@mantine/modals": {
|
|
157
|
+
"optional": false
|
|
190
158
|
},
|
|
191
|
-
"
|
|
192
|
-
"optional":
|
|
159
|
+
"@mantine/notifications": {
|
|
160
|
+
"optional": false
|
|
193
161
|
},
|
|
194
|
-
"
|
|
195
|
-
"optional":
|
|
162
|
+
"@mantine/carousel": {
|
|
163
|
+
"optional": false
|
|
196
164
|
}
|
|
197
165
|
}
|
|
198
166
|
}
|