-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
4184 lines (4184 loc) · 178 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "forum",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@ckeditor/ckeditor5-react": "^9.0.0",
"ckeditor5": "^43.0.0",
"laravel-echo": "^1.16.1",
"moment": "^2.30.1",
"pusher-js": "^8.4.0-rc2"
},
"devDependencies": {
"@headlessui/react": "^1.4.2",
"@inertiajs/react": "^1.0.0",
"@tailwindcss/forms": "^0.5.7",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"axios": "^1.6.4",
"laravel-vite-plugin": "^1.0.0",
"postcss": "^8.4.41",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.9",
"vite": "^5.0.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
"integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.24.7",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz",
"integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz",
"integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.24.7",
"@babel/generator": "^7.25.0",
"@babel/helper-compilation-targets": "^7.25.2",
"@babel/helper-module-transforms": "^7.25.2",
"@babel/helpers": "^7.25.0",
"@babel/parser": "^7.25.0",
"@babel/template": "^7.25.0",
"@babel/traverse": "^7.25.2",
"@babel/types": "^7.25.2",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/generator": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz",
"integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==",
"dev": true,
"dependencies": {
"@babel/types": "^7.25.0",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz",
"integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.25.2",
"@babel/helper-validator-option": "^7.24.8",
"browserslist": "^4.23.1",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz",
"integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==",
"dev": true,
"dependencies": {
"@babel/traverse": "^7.24.7",
"@babel/types": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz",
"integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==",
"dev": true,
"dependencies": {
"@babel/helper-module-imports": "^7.24.7",
"@babel/helper-simple-access": "^7.24.7",
"@babel/helper-validator-identifier": "^7.24.7",
"@babel/traverse": "^7.25.2"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz",
"integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz",
"integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==",
"dev": true,
"dependencies": {
"@babel/traverse": "^7.24.7",
"@babel/types": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
"integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz",
"integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz",
"integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==",
"dev": true,
"dependencies": {
"@babel/template": "^7.25.0",
"@babel/types": "^7.25.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
"integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.24.7",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.25.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz",
"integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==",
"dev": true,
"dependencies": {
"@babel/types": "^7.25.2"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz",
"integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz",
"integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/template": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz",
"integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.24.7",
"@babel/parser": "^7.25.0",
"@babel/types": "^7.25.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.25.3",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz",
"integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.24.7",
"@babel/generator": "^7.25.0",
"@babel/parser": "^7.25.3",
"@babel/template": "^7.25.0",
"@babel/types": "^7.25.2",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz",
"integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==",
"dev": true,
"dependencies": {
"@babel/helper-string-parser": "^7.24.8",
"@babel/helper-validator-identifier": "^7.24.7",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-43.0.0.tgz",
"integrity": "sha512-pwhr46NNLOEyF2Qob/x4+Mwt6Bqi9i/j/4JaI5fSdhml8CZQHw5levJB3NRrOUX1zOw4cjZXQDU+j4TAN+l3xw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-upload": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-alignment": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-43.0.0.tgz",
"integrity": "sha512-GxLw0l/l+CnqDavcHciegjmKsR4nZCMlrIdlvxPrQXAZOU2/EEEQE95UPVwbJCvIX4BB3LgF31FBbiDMWT3jbg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-autoformat": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-43.0.0.tgz",
"integrity": "sha512-wCPNWhgnUQctU7c8JdDVbf9m8Ai1dugvnFnR7xTLY3SLh7LvUCF0q0QQ4CysHdNVGSoGVJBmdjU7Qg3qNwD9Ng==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-autosave": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-43.0.0.tgz",
"integrity": "sha512-tqOH9ihcSpErDD9tYCDuIBnWNkAlti3b9gknpNj1cc3JSFbIcyX9KAsSFP49qMgaA1An95UyNTo7YunZgOp5sw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-basic-styles": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-43.0.0.tgz",
"integrity": "sha512-L3kMP+uDvmkoAtkZO/cvJz4zvbnES1OQYmSipkq2YKZfyAtajj2FWHJ9Xy58D6TRN7RlgoN4WeM4jA0VghNcXQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-block-quote": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-43.0.0.tgz",
"integrity": "sha512-FispEZZOZTpau6L3ft+hbpOqi1nDSrPRdEl4oObcHXdisHEYrTdfPXUtGDlcCcaU5mekNzVt4BNRikx2wNP9oQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-enter": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-ckbox": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-43.0.0.tgz",
"integrity": "sha512-dvTgYbn1+EObVoW93rOrLJHlIwAy0/4trLibTTIuwjhKU3IeVW1vH4/UIgXV8Q45CCi5vypLBxzU5V9/bzzcDg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-upload": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"blurhash": "2.0.5",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ckfinder": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-43.0.0.tgz",
"integrity": "sha512-YZv2AO9my3HBv/J6pOSjkMgVxl6fkUuT7Ify6Wp6ixQFCy1nPPR7s3W3WQX4+d0BPEXcz602A1PylCESYWwFfA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-43.0.0.tgz",
"integrity": "sha512-z0A800Acmd1bfY2bi69OB2xBVNZFeqRNRfWyIX+kdP3+kA+tkb6ypMhAc0XMC2cstBcTKUSPEk7HufgD0k8gTw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-cloud-services": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-43.0.0.tgz",
"integrity": "sha512-cJ0nwSZNRyX69Ky0M8xIjLzxTJz7E1JJ52TBkzGogV1D2XogiC2eXUMHZDi6zoiBP5KyB84d4trBIxUs0ElaEQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-code-block": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-43.0.0.tgz",
"integrity": "sha512-gQJaMQdEvHtqG7KsCpWawSnVJeH+aLzgETYEuiWxWkJPXqKpE/gzq/XSRxqoyIoda6YWz2gfxCDZckVAHXa9Pg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-enter": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-core": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-43.0.0.tgz",
"integrity": "sha512-UbOnWwB8RIjipDTuFCPVqJtSnIhuCf5DCUa+05JqMdKzlqj3pJC+iBsvGbxtk6DdzSr8q1CUHwhJxlXfs3BSLg==",
"dependencies": {
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-watchdog": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-easy-image": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-43.0.0.tgz",
"integrity": "sha512-iT+g9lrBvKreHjRP7tc8P/LrzHEtipBQ488eJdtmaNvMUIQvFnjhZOIcYd7Lr+a4M7+qJl8tSwJOQvM/KiXDeQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-upload": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-editor-balloon": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-43.0.0.tgz",
"integrity": "sha512-D8tJ/ZKezsc0m75/kzSS783VB8tRiWabmzJUOtlFGss8RwD3QZqHCabP/boZW95vEm/sk5UZt2COL43jlNN4TA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-classic": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-43.0.0.tgz",
"integrity": "sha512-VUewScFqwQxm5tu2YPMNzX6pVb3HaXGyEL1PbKo8gBtmo8eimsfNS6WbW2gn4RhQKyu2BzFKXeaNi9Dj0aTZLA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-decoupled": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-43.0.0.tgz",
"integrity": "sha512-BVrMPXCrHMDaxxEuLiUhma4Kx2huSnp7u5EoWaDxAVOXjpb3ZRlboGV5smpt87BmjP5Zt58SrUsDoHnLPfN6eA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-inline": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-43.0.0.tgz",
"integrity": "sha512-II77SDB23t02Kbapf74W0gR8QpNCeVm7g7IT6NvGF1OW3RlTwDJQsfdyOgvHQoU4FkdRoOIEOoeFbJxgToJORw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-multi-root": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-43.0.0.tgz",
"integrity": "sha512-9J48bxr8H0iD98QYEdBrfyIGXcX1v0jQN3w9kuT2Una/GgnBRM+EiN2N9vM+xu6arBSA30aZCqU5u0mv2DPAGg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-engine": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-43.0.0.tgz",
"integrity": "sha512-0CcNbxxNjrmxytBPjh49ZELwyoE8lFSCFx+44CGRicY+GYeg45+sIUiyY0rWiBaxukfVajl1sYlctDVGezP9Bg==",
"dependencies": {
"@ckeditor/ckeditor5-utils": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-enter": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-43.0.0.tgz",
"integrity": "sha512-E6ay1zfYOThTQoBISXL3Ez13dKsJXWz6AZV1z5tAq77N+pD0hBjX4uwwxhQ95Yto56Ifhy3l4zwNJTjePAD1TA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-essentials": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-43.0.0.tgz",
"integrity": "sha512-UGXxAhmod1QSM6t5ZEPklqBpoAHFqS2ZWXhGZdQaEVzt13MR+tZanug/+3XTs46yhM5401jKT7BGhfkUZwQnVA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-enter": "43.0.0",
"@ckeditor/ckeditor5-select-all": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-undo": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-find-and-replace": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-43.0.0.tgz",
"integrity": "sha512-/kD4gypGzuPqtun9IWA0ywNKJKJ9sllurqjRHOXagU5L19pakBr+KpuD7vKNN+NYN3gzyI9REMP6CEXSBb+c3A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-font": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-43.0.0.tgz",
"integrity": "sha512-/B5Txk17+av2AsD3naq+yqOw6vdj2n8jA4+Zm0J8TerCRbwYELRyA9vBCwsGvVKkl56RfjzSNInFD/gKAn5Uzw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-heading": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-43.0.0.tgz",
"integrity": "sha512-15h4KH4LmH8h0udTI9Apvw4YuEopjx+srt/++Uxv/AasLfNSOMfZ8lIjhqieuqWjeCGotnV8sG3TPJDi55JOZw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-paragraph": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-highlight": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-43.0.0.tgz",
"integrity": "sha512-lzlIXS0/lB2eUCygzUJbNOU6YDXiIyAnZoFqx/qw4heU9DL33Omh+cSfBpSkm462OWbExUWoOkqHFtE3R8Qs8g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-horizontal-line": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-43.0.0.tgz",
"integrity": "sha512-yYsfSjEPW0enbXKntf8OA9G4xQGEKp6m+Dph8asuCIakpET21oUkeVYWDgRlf5in0Qabk5Ymv/UkSWdUaPiVew==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-html-embed": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-43.0.0.tgz",
"integrity": "sha512-KWjZkw9leOzO81xYLqHqhJK7DhrW1qxrfQ2blD3XRI4aXcFQXniLCDXugkLOTzjkbWUhXUbyWt6tM3gPqgX1jQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-html-support": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-43.0.0.tgz",
"integrity": "sha512-Ji5zaG17wgJRSpXe3FNBD1rEmqLb6Jh1+RJX2/+rIV3ph0ZhP5FKESz8PPw48bPjns5sjd5RCdalv9UIKpz5eQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-enter": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-image": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-43.0.0.tgz",
"integrity": "sha512-UeO1yaDigz1md+xBt9wP1pp9ncotVL8TFkx3nxXvOqVG8FxWS+HdHZ5JwdG+yCrYiIJOPDJt2YiZ6HSkktF/6A==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-undo": "43.0.0",
"@ckeditor/ckeditor5-upload": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-indent": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-43.0.0.tgz",
"integrity": "sha512-GnG9LsVWXE8Otyxt3ZN4Ild4yYNHy06sQwcRSuByPePKzFb34l/0AfH8IqLJv8SQT/z35Tb7K64zKOriZFX53g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-language": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-43.0.0.tgz",
"integrity": "sha512-NcVmgB9YXyrHqbj5QUpKJZztj/eEN5k1RkLOhQNA4IDw6UvNp5uSkum5AxtpwcjDaE10UHQIYDBQIwGSRAUL5g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-link": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-43.0.0.tgz",
"integrity": "sha512-BAkjg+bfiYCPOvK7WLLlqL2Hy0tcNVgspWLRNr3RJWhCSZMEbtgF8DR97mRA/vWkzTR/htNGKXlbp7OOmBk2Pw==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-list": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-43.0.0.tgz",
"integrity": "sha512-pBEI7UNNmO8egc97f1oNHZZvDzZn0TAVzxpYifQcUsVwnsobFk9pojQIpEdJjKoPWcIMJO6SfHe+DYvrB2kqPg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-enter": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-markdown-gfm": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-43.0.0.tgz",
"integrity": "sha512-4TjnTugDEMoxLej/dmiUxqKEwGqmPACuwU1SnSR15E5X7MR+0SHAdXg/sQfJcbmwrjle/6tSp4NVK7XKPi7Sug==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"ckeditor5": "43.0.0",
"marked": "4.0.12",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-media-embed": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-43.0.0.tgz",
"integrity": "sha512-l+BlHpS88yZ0J25KqfXADgb3AYXuAt5yTzYwN8XCMQ0/HbjKmgb/Hkppo5Bcd/hzSBG+LUh1dygP1F2lkc5N/A==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-undo": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-mention": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-43.0.0.tgz",
"integrity": "sha512-B5DNmfj1JbLLx5+6vnneoK+C0BLPjiM+5x1qdpLVAMIWkbr6qJCthZfe5gnGD7WoGpRILIE//cskm42eP26wcQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-minimap": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-43.0.0.tgz",
"integrity": "sha512-2C59bqoVBOTnbccsgpCyie+sGKTl/J5nIt5Wu1oyINYPT+j+VjUtiSh5yZKPRXTF+Cyba6NyFU/56BJLBnPurQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-page-break": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-43.0.0.tgz",
"integrity": "sha512-oSHGAPBHrs2pRwAp36ldVn3fy2xySzDmMXNArnpiRbwIScQOZHuf/iqAIPeeZkO27Gfo9bfh/oWbGcUfPBzF6A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-paragraph": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-43.0.0.tgz",
"integrity": "sha512-xt8x4E6Vh0dmFxbCtv89KdKoSM+xB6B8s7q+Mvf/a/gtnV/x1OJgMBBTUj81FRYtMVB5LyQsE8Wo8jNLYzHmTQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-paste-from-office": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-43.0.0.tgz",
"integrity": "sha512-VMONY8JUdSfWQ0GNjtpjqWvA1BGunIqhDp4dIvbSyiAoK/3p7QQfjdAm9OOxHIwyns5gO5+sBiEHC5GZadgSMg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-react": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-9.0.0.tgz",
"integrity": "sha512-wqFGUsMqoVKmghO8lf3Ds7hv3NFDA72FBnIwbbN7eMgC36jKJ162i4LBkHKXiRzY/7aMg7JbindD+/2skaX3gw==",
"dependencies": {
"prop-types": "^15.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-remove-format": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-43.0.0.tgz",
"integrity": "sha512-q27Zqie8WJXk9XGp5CFaGZ8JMyLczhdGU/kyeeX9A5FcCDxpR2nYOgtq0BGgt14XTa2Hr0IKM8NIfdyxA29YNA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-restricted-editing": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-43.0.0.tgz",
"integrity": "sha512-zMX3ONNZ1jKKfT41PERvJOr79ciZYxCQjhBkCHQE6xe1VhU5QFfPibvZRj+KEHI6CBhxGrwo0In0YaLLIHbUuQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-select-all": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-43.0.0.tgz",
"integrity": "sha512-ABPFd6cVeef5tWXtnv3ZNdCK1WcCEH48Gm8o84S+ZwQ0wW6y3CY3EW6QVCIL1sqBzgLY8NBBCgGvS7Ymn7fv4A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-show-blocks": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-43.0.0.tgz",
"integrity": "sha512-KX0nfY1Hhs++fv/mgy4+lJxT78ekOwSecLURpX3Mzs4j7AAek424D7itlP5r1wPK9e7ozPd7+AmUYHCuesSD4w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-source-editing": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-43.0.0.tgz",
"integrity": "sha512-Go9lDGoB26d0Rb7D329I54NHO4T28c4grqx6KVjO0R8nmugfcSpITBLdSn/KarDJA1ysIsbN7k/p5guuiVWTMg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-theme-lark": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-special-characters": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-43.0.0.tgz",
"integrity": "sha512-5l2SdmYEBbid15xUo/L/UjzuxFODNEhNvv4mXIZZOX0tkJ6UNlF1jt5wMjFjWrfFUsZdUwj/aC/7FutotWeHrQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-style": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-43.0.0.tgz",
"integrity": "sha512-9obmKXVQWsg/Ly25ggXyO92GrHp3lIcJ8vjEkbQU/8PO2pblhEylLJEPIRWSySNKYkw0d2fsSDKjC5c3Brx/Gg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-typing": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-table": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-43.0.0.tgz",
"integrity": "sha512-yHru16jsCG7Zr71hWVvCFyc08ol2dbUNwV4wAZUmM27sYyW8ue6ATML6NQQUiL+7gwbm1xit/Gm9hxuRBtzz+Q==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.0.0",
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"@ckeditor/ckeditor5-widget": "43.0.0",
"ckeditor5": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-theme-lark": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-43.0.0.tgz",
"integrity": "sha512-cd66o/cdKFDhjMnhabgtrsl1K1cyRYzsQnS2459Ly7ApxreOF5w8MRQuGIfr7NmjDwu7xTo4CXowCxmRoxf3JQ==",
"dependencies": {
"@ckeditor/ckeditor5-ui": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-typing": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-43.0.0.tgz",
"integrity": "sha512-OKXpo5NdM2ZAL4hJpL0SXdeEfWzZfcfFwRjmOSFOIhTH06wN2E77OQbdn1E6L3yyup+9iYBanL7BYjDBQL4/cQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ui": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-43.0.0.tgz",
"integrity": "sha512-R77EeM3vbRWmVdCUPbw5ZfqQlz2UiOIrCnjkXEf1GQVFzn5THNejlUzf9QwL51GS8CquOyH8rg1iRPM9gQiGuw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-utils": "43.0.0",
"color-convert": "2.0.1",
"color-parse": "1.4.2",
"lodash-es": "4.17.21",
"vanilla-colorful": "0.7.2"
}
},
"node_modules/@ckeditor/ckeditor5-ui/node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-ui/node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"node_modules/@ckeditor/ckeditor5-undo": {
"version": "43.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-43.0.0.tgz",
"integrity": "sha512-FDLyZqxkcMqhodOHrYP/GTQWQuC3e9n1gg25nQYqR0IgEqrDU6TH+wTBMrvo6YHv3pl88IZsfNr2vj5ZnsKThQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.0.0",
"@ckeditor/ckeditor5-engine": "43.0.0",
"@ckeditor/ckeditor5-ui": "43.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-upload": {