-
Notifications
You must be signed in to change notification settings - Fork 145
/
package-lock.json
3079 lines (3079 loc) · 116 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": "@woltlab/wcf",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@woltlab/wcf",
"dependencies": {
"@ckeditor/ckeditor5-inspector": "^4.1.0",
"@googlemaps/markerclusterer": "2.0.15",
"@types/facebook-js-sdk": "^3.3.12",
"@types/google.maps": "^3.58.1",
"@types/jquery": "^3.5.32",
"@types/pica": "5.1.3",
"@types/prismjs": "^1.26.5",
"@types/twitter-for-web": "0.0.6",
"@woltlab/editor": "git+https://github.com/WoltLab/editor.git#ebd849dd0abb0826fd4c56b29d88a79b45a4f9fb",
"@woltlab/visual-dom-diff": "git+https://github.com/WoltLab/visual-dom-diff.git#e5b51fce3157d1eda310566fc1f86101341d1fea",
"@woltlab/zxcvbn": "git+https://github.com/WoltLab/zxcvbn.git#5b582b24e437f1883ccad3c37dae7c3c5f1e7da3",
"focus-trap": "^7.6.1",
"html-parsed-element": "^0.4.1",
"perfect-scrollbar": "^1.5.6",
"qr-creator": "^1.0.0",
"reflect-metadata": "^0.2.2",
"tabbable": "^6.2.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-43.3.1.tgz",
"integrity": "sha512-fOnEq31euR9B/awWZCOc8KfgLwwG4ACtqBhSv7Hu6VOgHa5TKWyWAdhr9ILSiUp7NMfYJoTQStbxcXZIWPqQXQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-upload": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-alignment": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-43.3.1.tgz",
"integrity": "sha512-E+04zNdNBFDNgQajrWl8iFQqA1sB29y/XDFFRK+bzhcUaWdMadr88yodjHHdcax8/zI+GzBElCvWGEGchyrL+Q==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-autoformat": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-43.3.1.tgz",
"integrity": "sha512-hSQxIXIObrMfxijMPmz8odOtz/wD5SwuGZWVoF5km3EtRQxZwAcQr1Vjy+VHHPo6PZ+o3YoLP+IHCaULtNobYg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-autosave": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-43.3.1.tgz",
"integrity": "sha512-28667m7ea0wBZMb3uIzgipanB4DrDvKn4o+mRUDExlRT8M14vn1u/ILX8ZJy28Rihbg2wPcVh6rP3zoQjcucHw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-basic-styles": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-43.3.1.tgz",
"integrity": "sha512-1RBnPmgsIoxPL7wZhId2KsfPujITbEAfzHhi0c6m4kuWlkmcVXYldWvUvCvAUguAznx4LOxhKlp6RdFSPTFTbg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-block-quote": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-43.3.1.tgz",
"integrity": "sha512-cgY4GKwMlIVLnhszPoc1ortp+T/s3TLowrwRFtWYxTKSsHWBGFlZUL6oMASPunpXvvJqHcgnKlCMxVSh2VMCkQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-ckbox": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-43.3.1.tgz",
"integrity": "sha512-KObL9w/QBWJi0lG2zfm+x124Kzd7aVt+UaJHJEwsAPwhZvqM0LCUeR6wwb0oCN6ph5qrCjXoj09z7z8Txk5IwA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-upload": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"blurhash": "2.0.5",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ckfinder": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-43.3.1.tgz",
"integrity": "sha512-Yji6c1/0H5fExDcT+NNyQQePx2cd8Ul1Xuko1UVmsLN2Vhi7VIDJjEkCFndJozd8VQqI62Obe1GTyjmapBV5+A==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-43.3.1.tgz",
"integrity": "sha512-Ke6fVEy1fF3AWHMtKvF1pAoDYBVOG4q+gDHD8+dcV6KPK1uA/CR0mw6TZsslQQquT4jC79y05IWu2bq1Mxv01w==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-cloud-services": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-43.3.1.tgz",
"integrity": "sha512-JppySF+uWedDXPTVZBsTfZCe3qedDAdWSgw0Ww/qi4/sPFcgf/MaQ0LBHbl2Ii7JlJjng82F1F2kv9Ny/Rkauw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-code-block": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-43.3.1.tgz",
"integrity": "sha512-UGhGCPNfFXLua0TmszLSWX6BlkemaPULN1EZ+FBPsUZb757qWWWVWI9GKLmAc4jSPqOv+azU+JAZJzX9bE1oYA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-core": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-43.3.1.tgz",
"integrity": "sha512-6pil2OF4auF3PKrg1Oa86CqC91ZYc+NuHih0ebM0JW/I06d+0smnJg5dw4yN7mKbghbJS8mNrusxA5cf6Hkh6w==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-watchdog": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-easy-image": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-43.3.1.tgz",
"integrity": "sha512-Cd5NojL0Vfa1SQj6uzbP3oSHvQY5ys2hXF/2jNsYKLePTCybSvGkg5REv1JifM6kSNRH1VXdad7a2LkqvXnCnA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-upload": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-balloon": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-43.3.1.tgz",
"integrity": "sha512-klS1FZG29nJE/XbfRXrXtwYU/9uCFdi7xGbYfaJnmyNt54h46aiquKacosbiffA87Tr5sT3Oqm3dBbNlsU158w==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-classic": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-43.3.1.tgz",
"integrity": "sha512-wjBeXUQBuvz6CmGlb5XncJ9cHE7tozU6eoorycfSTQCzqr5uE57LWTlKclU42w7MgS2ya5V2kLnncr0ZqrZ2Vw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-decoupled": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-43.3.1.tgz",
"integrity": "sha512-aw2iZ+WCcCu9sUAnsHhsXZWLeVPyiLhZfpZDuEWjPlvsrCfT0RfSuwMcfx7l9PREA09VR8+6MTstm61EG8dmWQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-inline": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-43.3.1.tgz",
"integrity": "sha512-3iZiWl2aM1bCnS52NeBoAqCVowABhWrBlns27JEGKZ+LNPZroMie7uKuMX3YQGYE2awFnsyP6XofoJtu6CcKCA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-multi-root": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-43.3.1.tgz",
"integrity": "sha512-HDgfTuotrHW91AZ+x+lumwo1tngRRZ87dnHT8kjSRFWAeXPSd2Kw986++Oj9K080+idZaYLF+IutAOqvCT32sw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-engine": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-43.3.1.tgz",
"integrity": "sha512-Fkv3ibQLDPVHFH0z4/+gA5wrkPVWOen+Cjv/NecNBeAszZUo+F2j9RwvQ1zHwtGb0RWj3+BWOPgo8jhSe7tFgA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-utils": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-enter": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-43.3.1.tgz",
"integrity": "sha512-xaHnU2RbfYi8ilfN260pB3YDvJ9lE4SfiFQusyRdWkeBo5gDAGBbQY+qCC/hmxkr/yftNZfK+d7Ow93xXtqEwg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-essentials": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-43.3.1.tgz",
"integrity": "sha512-bZtzXhmBz8XF9J4eUxOjURmw0HJPKIqo18a6vNxg07W8z3ouHMb9ke//4z4FF9N/1dbtA7a2+jIACO6WvXrX4A==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-select-all": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-undo": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-find-and-replace": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-43.3.1.tgz",
"integrity": "sha512-U9dyK8yQgxGTUphRbqdUJbvfi5v7zzijCo3Kj51NxyWwOFh7SGReQxHDGn44DmSRold6lg4F1sbXeFdwu1o+WA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-font": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-43.3.1.tgz",
"integrity": "sha512-NOeBtScqMuBLVWFPuW0snleh7rMFkNb006yzDIG6JApnF3Vxi0JLQXub/lPHPgw5srqJ3z159DWT++exoyz/mQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-heading": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-43.3.1.tgz",
"integrity": "sha512-cc8H027Y2OwvYDGMTbBSzE+oZaiLMZtlUnkgiolMw/OQ59ysONYi+KqyMzBMTuaXrkP3CLM57ZbsVGASQ3IQmQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-paragraph": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-highlight": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-43.3.1.tgz",
"integrity": "sha512-XVJq1YP4IAaWQBAyY1xlKOfzkpnclUH8zTUPaW3TZUGK5t6W/vFT+KAzYfUp7PdBb+PP8/O47FwKTvIQBkbqFw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-horizontal-line": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-43.3.1.tgz",
"integrity": "sha512-zkKe0S9gBXwveBUzUuCBPWyrzHQor/zcMCCX9YQk1StUxtRRsURNvWOoFeoG+Vf5jMGSA2gpnBgIo70WrX4A3A==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-embed": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-43.3.1.tgz",
"integrity": "sha512-VqIhhPwMgAzmPqjvQUQYaFmCFglkg203W+LSVCwrvgVZ9mVtKbkhwCHBJnLhG7qatar7Gg93bObfAFdAjsaR2A==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-support": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-43.3.1.tgz",
"integrity": "sha512-cnQ+kCPYH5GiSe5S+13Fr0vuS7DzT4Onx11fvOkssUujtAJ1e/C7hNf5Ehd+SOAgr5IzevutA/+OeR2KHGjIag==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-image": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-43.3.1.tgz",
"integrity": "sha512-QgHxZtWpclzQ5SUrh1oMsGFCvjykxge5IKe96iKUyAVrhyQp60RhW8DdAElHnPUg3wwILMYE7cKMphknCxcVkQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-undo": "43.3.1",
"@ckeditor/ckeditor5-upload": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-indent": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-43.3.1.tgz",
"integrity": "sha512-CPU50tumKH7rJ6f9QEB/LHSyzKul9xP/43F1IesvOBWnOkAxQ2QI51oORT5WdKn4B0Z56ojAm48Q/ZUtsef+3w==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-inspector": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-inspector/-/ckeditor5-inspector-4.1.0.tgz",
"integrity": "sha512-yKoIFpaSVQQIhgFEyoltwG40OSsWX5psYdYvNxW84nfxgrs90DJrbMQDtdchVZNMXBu6CkJfPiPG0WBLU9su3g==",
"engines": {
"node": ">=14.0.0",
"npm": ">=5.7.1"
}
},
"node_modules/@ckeditor/ckeditor5-language": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-43.3.1.tgz",
"integrity": "sha512-M7npJRhLoZksnvjZ0fS+6hbAN4RebgZCE2bT9b3Z8Df2Alfy0GJEwJL5aQsYpr+78QFeytTpqzjxXLNLjOyEqA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-link": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-43.3.1.tgz",
"integrity": "sha512-duTA7harmvZPZ2LbJ8tHnOrhx5lGk6AGavbDzK2xuicMncivm+amrkl/b771uA3Rr6gclHY77ZPcOuVaK+dp/g==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-list": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-43.3.1.tgz",
"integrity": "sha512-PuR6uJ/SKvaXIgqTO3MUnX+00/xB/TalStiVqZqqG0xlYg47/eb6hul+4fmTPV7ahlJaon6Y3nO49TsPbbhApQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-markdown-gfm": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-43.3.1.tgz",
"integrity": "sha512-aVP2FqQP7okSAorQoItcYRbOd0J2O1ubGjtvGGzl3uC5TuKAtlWYWcBfiVTHKxCCtxywPRiEgBxwoGuB5mlwhA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"ckeditor5": "43.3.1",
"marked": "4.0.12",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-media-embed": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-43.3.1.tgz",
"integrity": "sha512-3xMIaH/NTNEKv+lu1cRIIPGgDJgYI1DB+5NMXNVL3UGQkXdqW7PtgFDsOnhQwTAbyKpy+fHDngLb3eZuRdDkKw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-undo": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-mention": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-43.3.1.tgz",
"integrity": "sha512-yrOdynVNOS72RjTjhFHzv3Ofbm0eTBKFhuibxdKFfHtTR0QIqSVB5jU+aW1+Jq5LG73E+9eYtip5paSjkqJMWQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-minimap": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-43.3.1.tgz",
"integrity": "sha512-2b0b4mZtRIHAvN/MFAVeqiGt58TZI7ixLcgJo0MHNesYlIk6v13opDWhQ9oefNe8OwJMkD3fAHMlAcg+fUqA9g==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-page-break": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-43.3.1.tgz",
"integrity": "sha512-6AI2GGJveEm/2GESUY01wSPM7AeqHqVuX4Hon20uCAXHYCQkDubOHJ0yV3oFXl7iHeO6Ue2DdlSLayIUXCLoEQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-paragraph": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-43.3.1.tgz",
"integrity": "sha512-16ry56X+uXuZEzGZwLS8zpX2DtWN/CHHu5pSz0r2VDZ1zUGLsq/MXutotZfzMMjgdED3x4mJRQE+WgiyRrlKDg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-paste-from-office": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-43.3.1.tgz",
"integrity": "sha512-LLf1KB11jeYLDpQPq0d2QVPxQxp9kEibPAF4rGD4stPpRx9d+DbwmE59Y5wVASKvYJo+yNpR9CGWsE4ZgjwTWw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-remove-format": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-43.3.1.tgz",
"integrity": "sha512-m7zvvYzHN/HExT0NoILXauVFI/AKQyuzPqqCI/VO1Ft5mLswXGuK6vmO1U10SmGz85etYZjEipKuouf2Anyqxg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-restricted-editing": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-43.3.1.tgz",
"integrity": "sha512-L6sA6UrUPy4Q3AzF8yQGsgEadO1IcZv53Ijevk9KuD7dwLF4f9x4ukUFLlGRpoYHPAW/+RpADp2PPegjKHo9QQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-select-all": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-43.3.1.tgz",
"integrity": "sha512-oYQ8uF6hmlX7OefpJ0FflvKddAkEffg3fKMT2FAINwqxhX+O7h9RQZ79AiOkTab7HUTIkbhM5AlhFJIXiX0Z7Q==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-show-blocks": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-43.3.1.tgz",
"integrity": "sha512-o+IhZnjMmoF2qd4l1GqQqroeIEA29QAIOYfvrdMKZGrzVGmjbvwyNkbJRyZlAYhZqX8tLDPaPGn0tl+onhWtzw==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-source-editing": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-43.3.1.tgz",
"integrity": "sha512-Pq7WthQAiKa3A3q82bHqNRjQ/xlOpSX9kZHLm+CDH8XACxZbBF6Unz4JPR9zJRuQxkoFs314DM/PG6pPZQgXXA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-theme-lark": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-special-characters": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-43.3.1.tgz",
"integrity": "sha512-3iwrtISndl5hc+/LuSXht69xqkEv95zg8Qxv+ovREA3pvtgt5u9O0t7ELcmUeTTEs/hJkF2FDplIYQj5zIvO+g==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-style": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-43.3.1.tgz",
"integrity": "sha512-2+ATPa5y4ZUkak5xFTTDeUPhuCAYB4OPNt/QjMvrQjpEwXoWDJ4f8GqR9oFFsqEGMm65GrUp/xIQW8WRH43Kng==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-table": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-43.3.1.tgz",
"integrity": "sha512-Qr3GkKELnG1EY7Bu9dGQBkGTqhVnygeHKDCTEG9m218shYsI5L6jFftGUzWmJzMpm3hNFkyYv+1YWaIoqfRzIQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.3.1",
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"@ckeditor/ckeditor5-widget": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-theme-lark": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-43.3.1.tgz",
"integrity": "sha512-kAgeGx66jT31FFYwAoc43oX5ehQtiYE57OJWlPTXrDXxyq0Y+LYFW2/bp4UVYdZK+OKv9dp1Do3VQfxJoGzFjg==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-ui": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-typing": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-43.3.1.tgz",
"integrity": "sha512-sK45GlrOHqWOphVnzDKe3kofVJGhSRk34UQJnyXgMN+35QJqypnJeBYBnnHWL8+nK0S4zk9oQO3PuiRH6gg/WQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ui": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-43.3.1.tgz",
"integrity": "sha512-dbR4FK6mCkI89h4Joyf1PZt0Xsq0N+sZg05Z6BpYz6GS9U35C7J9bHxN469dvaIc8bJws4eYJ5x+St3LcvlduQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"color-convert": "2.0.1",
"color-parse": "1.4.2",
"lodash-es": "4.17.21",
"vanilla-colorful": "0.7.2"
}
},
"node_modules/@ckeditor/ckeditor5-undo": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-43.3.1.tgz",
"integrity": "sha512-UxrWPlHzL/DKuxp4R5mlQvy995Ozehh5hQxY5yvL285Dzv6PY5pk627Wv/qS8AyfLMyVNiFO9bDWBIcT9igQRA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-upload": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-43.3.1.tgz",
"integrity": "sha512-uOEhCgqgiK4V/CnbnuwHU/NUOG4ioQE5KUUtVmRG2xjQKg5C1uIT2dig+wnKw8vOdwVTMD2hVt7/OC/whQuheQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-utils": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-43.3.1.tgz",
"integrity": "sha512-4CyM3AP+DcfuPuw+zceI3UTh3HcusnvFVeRPPw6j3Qe29/jadZYsdvkdo9KsDaiwgx0ctooKCuY9SfAcd/CZNQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-ui": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-watchdog": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-43.3.1.tgz",
"integrity": "sha512-d9gh0QIrrImIe2SFLo/IBLdpgC9REVkvUTv//qLbUaM2ffBboMnpJYPAB/hgl8ev4lkDvCrivlGjc/80COfGTQ==",
"license": "GPL-2.0-or-later",
"dependencies": {
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-widget": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-43.3.1.tgz",
"integrity": "sha512-0naXUVC6BFLnuj3lu5aTfRxmqV6py9+zqGHdJJZ0x8uSg9qcfUCLEQvA59bqzNteRya/lZeZhYKj8IcGnbB1oA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-engine": "43.3.1",
"@ckeditor/ckeditor5-enter": "43.3.1",
"@ckeditor/ckeditor5-typing": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-word-count": {
"version": "43.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-43.3.1.tgz",
"integrity": "sha512-W0Ic7y4/ePVqW22pHuXv5HRAbaDJFO13rUqyTZqU2H2ExZdMbJN6eT/UVhnO1XvKs/+jdKGO3LGWXt9QmmtkhA==",
"license": "GPL-2.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.3.1",
"@ckeditor/ckeditor5-ui": "43.3.1",
"@ckeditor/ckeditor5-utils": "43.3.1",
"ckeditor5": "43.3.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@esbuild/aix-ppc64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
"integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
"cpu": [
"ppc64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"aix"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
"integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
"cpu": [
"arm"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
"integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
"integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
"integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
"integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
"integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
"integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
"integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
"cpu": [
"arm"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
"integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
"integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
"cpu": [
"ia32"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
"integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
"cpu": [
"loong64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}