-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
4376 lines (4376 loc) · 167 KB
/
Copy pathpackage-lock.json
File metadata and controls
4376 lines (4376 loc) · 167 KB
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": "otis",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "otis",
"version": "1.0.0",
"dependencies": {
"bootstrap-icons": "^1.11.3",
"bootstrap-table": "^1.24.1",
"ckeditor5": "^48.0.0",
"firebird-common": "github:hathitrust/firebird-common",
"jquery": "^3.7.1",
"select2": "^4.1.0-rc.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"sass": "1.77.6"
}
},
"node_modules/@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-48.3.1.tgz",
"integrity": "sha512-xv072kFznzCLzG6Kiro9Pwb6v3FNXMu6/NWQX+NCl0wlqit85hRbIMJW0WyWxuYY4XgcDn4cgB89vRJ5p0zKsQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-upload": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-alignment": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-48.3.1.tgz",
"integrity": "sha512-ayiSLBtw4xvtMEPl6AhMX66Io6ajmq+2y2+FePfwu+9B8f8JblEApcWFLlj0HXxfWfJ470sEVMvwUJAwPLH9Jg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-autoformat": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-48.3.1.tgz",
"integrity": "sha512-65TMkSDpfE63WquypME53ESV209U1iXuhX32x95nc45hSi4CMn25oxqansrCpxIlHWww3d7z3tUgSRFGXpFSag==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-heading": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-autosave": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-48.3.1.tgz",
"integrity": "sha512-mc9UmTpyVBUn+V/pmzkP8PKJNuijytY8RuV7bckeq9OmxXOz2AD0lqlp+X48OcrgcefCA6e01D1hgElMhHQ/Hw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-basic-styles": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-48.3.1.tgz",
"integrity": "sha512-uVbKZLNScqYyvj/Wg3uP2sWCHVuvYyFCGSNA1osnmI4DwKi3BS4TW/rm3IYUPrD6q2y/GGJK05OyHr3hyw4oig==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-block-quote": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-48.3.1.tgz",
"integrity": "sha512-9T03V/VjWYu6dhyKWZVrlggeOumQXpUt4lygK6NQuSQ9lIMEnhFgzjqtZsGe9l90zvnPaUvV9IC3u1xUFZvzhg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-bookmark": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-bookmark/-/ckeditor5-bookmark-48.3.1.tgz",
"integrity": "sha512-EC5fmzUT5GKyIwQw+4tnHHJD4kUIBbiwP/+0gjHVZnHisRLfBOC3GAIczzq/AXDBIuaHqC9DZOAQQp+ltItHfQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-link": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-ckbox": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-48.3.1.tgz",
"integrity": "sha512-ZaonwyuQjqjsho4iKDGSTn/M+SFs/OTl0WMkFU3tOhWpUikWKejNM94z+T6OR9oELWJVb58Jg6ubV6+ZYaLL7A==",
"dependencies": {
"@ckeditor/ckeditor5-cloud-services": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-image": "48.3.1",
"@ckeditor/ckeditor5-link": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-upload": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"blurhash": "2.0.5",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-ckfinder": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-48.3.1.tgz",
"integrity": "sha512-kZBp/eDhr8Y/CcE2UQZxFp3fZ+w4WYdYxmyuQ70mg4cOS1TMV9eh26Zz5khWAt+oAJsxVIDL5KNodak/hFpJ2w==",
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-image": "48.3.1",
"@ckeditor/ckeditor5-link": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-48.3.1.tgz",
"integrity": "sha512-PNI7yw9ese+fyQz0LzExRPY1CkjA6q9XqLDeMuLgp92Mkd7Vp1wftbB0ZLVyrzTIw8DEUudKziVsY3A4mT5aWA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-cloud-services": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-48.3.1.tgz",
"integrity": "sha512-pHJAj5RRhTV7uyexs0ryFj82zZNex91VtmwTOB/z+VPXSHq4jzpxFE1fVuoHgkydUF5S5Dl6TiFru48yYlK4YA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-upload": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-code-block": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-48.3.1.tgz",
"integrity": "sha512-9mwgtcrNCTK/06HXH+o8yNbrN/nCAflQtJ6LmAf1Gw/6Fed9gQslMcs5+ADO98Jer5OetpuKeqgmBACAuQUTmg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-core": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-48.3.1.tgz",
"integrity": "sha512-wrAhYK5R8MkGAE0VrOMFQN9LSRpSATS7DFKr4CCJod9EgBT873SCu34Ey0fzSqGxeOqamlcXQJVh/77+3JP4SQ==",
"dependencies": {
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-watchdog": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-easy-image": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-48.3.1.tgz",
"integrity": "sha512-A63AcmaAAGVUhALHVtwHrlBaWEaRjBhxWTwkQoy3RFPpSAXi1k0Cy55HhkVrnqVZSuKmljcX3FttpjOb6MQq8g==",
"dependencies": {
"@ckeditor/ckeditor5-cloud-services": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-image": "48.3.1",
"@ckeditor/ckeditor5-upload": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-balloon": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-48.3.1.tgz",
"integrity": "sha512-Unmzb3E+O83gIAvIT/RHyV1EzaxQGOzBiXGJhQahhQg++EvHUt4tmAJ6VzSLgJbtr8z3rMkA+lYpD5+OzpGT4w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-classic": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-48.3.1.tgz",
"integrity": "sha512-7azS8ry8+c3H8S1RM1Aphq8wCig4mmLpK/kTmdF2/+JkPUszRoVK1HThSmBkstKCHDv4UuSVR+FcJ6Co6Tavog==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-decoupled": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-48.3.1.tgz",
"integrity": "sha512-S9xGZS7Hl2jWQrZFVwk3o7x9Wwl7tgbQl8TCujr0Bi0zxoM286WkHbBUej9oLVVtDHvq7xDSafmUURbL/K5ZXw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-inline": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-48.3.1.tgz",
"integrity": "sha512-uoXl+lfvGzH6HPHyjgcQcwK/WSDxchmkQvPrMHxTCyeimn4ffzFKzIH4WiOz39t1lXpMjI0hTy66eTB8F/+qvg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-multi-root": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-48.3.1.tgz",
"integrity": "sha512-5BUDEfVCsj4Al6lHWPDxUCRUymoWwmwwg9hZqd6iSkBtDOuZfiGC9IitMb6qYvrD2Q0MLRoiW0z9n6My4ZMHfQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-emoji": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-48.3.1.tgz",
"integrity": "sha512-JQGLX9rMMnMY5/d8bJrF2htxKGxFfrW+E+rAy+Uc5FZ+cOCQCUfI0+kYpZYj/oyt5BH6VXn099e1Uu4xjicgAA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-mention": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1",
"fuzzysort": "3.1.0"
}
},
"node_modules/@ckeditor/ckeditor5-engine": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-48.3.1.tgz",
"integrity": "sha512-CbOuKrm3g8T2Df6WMEYtQMm4DJTAlmRutQQFj94zaXqDPyb8dSLpdPZ0Z89Qg2tagh9IEw0maG40ei2H4FETiQ==",
"dependencies": {
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-enter": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-48.3.1.tgz",
"integrity": "sha512-+gs7yLyWSfYlBofKA1ce4O4fPBoMw4mSXNun9CZP2FgByvsnS/5sOE3c3UTJS2bSLYabNkZRH3SG4XWKKhunGg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-essentials": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-48.3.1.tgz",
"integrity": "sha512-/yYMvcdYpwfQOumLNFccOnQvWfJoXN4Ny5a8m9OO/syGqeMtgpLy+Pn8be3nq4/pxdU6Qz0VnGVzU9OaHXxw4A==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-select-all": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-undo": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-find-and-replace": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-48.3.1.tgz",
"integrity": "sha512-R4DPKGC5XmN68W2HuUBRo8VJJ1KCB5Y8gr6JbNDNGQ7aJWrgAjQU7H7d9EEwxU6wjxzNAT7MJqPOEX/WixUBhA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-font": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-48.3.1.tgz",
"integrity": "sha512-Q8EVEjVix3HOleJ6XtJpXDqD7WGMU3WZR/9eK1hMvOHnvRWkHwXJve5IoaBseJXSSQopG98D1rvWuNvE+qsZNg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-fullscreen": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-fullscreen/-/ckeditor5-fullscreen-48.3.1.tgz",
"integrity": "sha512-/UQzJFhOMJrDBB+02jSNJVD6E0cjNZ43KgsR8croTDEPLQ2pRH50aUkBZTZn7TfSYx7X2aeaYbyegvSB+pfw6g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-editor-classic": "48.3.1",
"@ckeditor/ckeditor5-editor-decoupled": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-heading": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-48.3.1.tgz",
"integrity": "sha512-CPlf4wSatQLqbgsj7DWPaOtjTgqchQX4Mv57NbV/2ZvDnqDOpjMi06d49yQngiPFv/6zqszr8U1raUX1OUhfYA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-paragraph": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-highlight": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-48.3.1.tgz",
"integrity": "sha512-wlqHoOuHeA2qrE9rBeVHgVK75puzTFWn/V8IhAcVBCPB2AApLYNTO7fkfhOEpxqodE2It1lPpN4JfVRWUkoCIw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-horizontal-line": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-48.3.1.tgz",
"integrity": "sha512-yl25cVmB5T+fsC2VqJvDLnmS9ymn+4LLaGSnue2D8Tg1WK/YTyWxKg3n0anPzMWBBLr1XcKAyVmnGFI66AKwvA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-embed": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-48.3.1.tgz",
"integrity": "sha512-AuXaTHSnxR6chWIz9Z9UY2x4ANHN6Uf0jkfiAFcP6POWaD7YLsviTEYk+YGYw/kcXExMw3CQriDK5KdsjZtnkA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-support": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-48.3.1.tgz",
"integrity": "sha512-aQ0ZHvvOATsUBykQJcGCFOTJjBDX3OULfeJWV1bqdVWAQt0BHC5xkq6d1IpbyKDaW9IkcB19GOS9nQgs1FasNg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-heading": "48.3.1",
"@ckeditor/ckeditor5-image": "48.3.1",
"@ckeditor/ckeditor5-list": "48.3.1",
"@ckeditor/ckeditor5-remove-format": "48.3.1",
"@ckeditor/ckeditor5-table": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-icons": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-icons/-/ckeditor5-icons-48.3.1.tgz",
"integrity": "sha512-a8mE5oTQ8TKf/325UmDixhhqGbDyzd749kcrANyzxwc89PtTMdUayl+D0Sj92Xp5fqMHgDEqipUcoohH9OSFBg=="
},
"node_modules/@ckeditor/ckeditor5-image": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-48.3.1.tgz",
"integrity": "sha512-3lQY0LEpUNle2nUrONOtOXax62JQE9ZYltMDkOhMy9hcto0BoIngBebBsBBKZmpPugvMTf4qPYh1VkorOAdH0g==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-undo": "48.3.1",
"@ckeditor/ckeditor5-upload": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-indent": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-48.3.1.tgz",
"integrity": "sha512-hRuAPVDex46Ky86wuWNoPLpkPYQt0jGECKPnSYsjavm/il6rm57J/Y/jk7CKGJJVIovVLFftvWsI0yHLcsAP1w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-heading": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-list": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-language": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-48.3.1.tgz",
"integrity": "sha512-DGOxZyTvrXisV+3FhFEcagfSlTC7m2tdhD2CJJmBRkKX+2ZOdeP1D0QCD6ybFlO3D/wT57Po2QX2nCVI6U79dQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-link": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-48.3.1.tgz",
"integrity": "sha512-E3pAhuNy77F55JUnX40apemSbsOC3RbUPIgPclNlh/1PXs1uN/bjkkyDVYQ/rT5MrophY3tw/bLZ/cRrbEuKBg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-image": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-list": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-48.3.1.tgz",
"integrity": "sha512-KyuXH0aAiiQCOB+yJAru/C5GJqT7a+OoHoanjZMsFq5jjK9r5Tjrh6hUfqXpw+okU1x7Ow+/J4QLVI3QqSnluQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-font": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-markdown-gfm": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-48.3.1.tgz",
"integrity": "sha512-y+aa3uPNwaTKxSXRcW3DNP4CfXBmXDmQk24mDVE4q7rl6lWkdnAUeEvUsaGYTRjs4szvY+HIaCts8OcSgKfvhA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@types/hast": "3.0.4",
"hast-util-from-dom": "5.0.1",
"hast-util-to-html": "9.0.5",
"hast-util-to-mdast": "10.1.2",
"hastscript": "9.0.1",
"rehype-dom-parse": "5.0.2",
"rehype-dom-stringify": "4.0.2",
"rehype-remark": "10.0.1",
"remark-breaks": "4.0.0",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"remark-stringify": "11.0.0",
"unified": "11.0.5",
"unist-util-visit": "5.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-media-embed": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-48.3.1.tgz",
"integrity": "sha512-Asq6B/nuhhHCka4mtjbIM4RrHAOWwCAYmR4kaX8xh6G81FfXKI/X26rJ8TjLno5J7lNgacdB6OznNu/UcJO0gQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-undo": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-mention": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-48.3.1.tgz",
"integrity": "sha512-TdmXZ+NnBXdbMtbA6Yo93mZpTs0oz9HfN8jY9yEJXsECOC0XPC1+nghQQrxJ3a9+eq6qba/JNLLM+ZV0W6DOaA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-minimap": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-48.3.1.tgz",
"integrity": "sha512-kDJfTRv31WrFisXBKzHNtKhAseiSsJKw1oWIPqqLIN9rnYXnEpjqa5BRgypfFbS7LW0wgjKvCOH/yHMyPrv64A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-page-break": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-48.3.1.tgz",
"integrity": "sha512-Wbsq6ZEOQN+zmfhMx05Ey0mda6qCj74j34yEZrnJ5nfFAoody7q3hJ7yJ9Edu10zF8+LXfC8+ebpaXQr77IvLg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-paragraph": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-48.3.1.tgz",
"integrity": "sha512-TnfBhRiFMBbGoXaPOpUiG109IpUFjbdEQEtjlBfiB4bMG71J1pdVYBe+qN1kvr34cYgdR96P/wbUnqC4BZA6Jw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-paste-from-office": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-48.3.1.tgz",
"integrity": "sha512-PAyMPmRRTY9MvvfhLdfPwgDOAlzm9u9C97aS7S/JbeKl2uys9uJ7nZRBC9v+9zf6eJMHx90ThKyVBtstKDC6LQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-remove-format": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-48.3.1.tgz",
"integrity": "sha512-ZVuLTxUupAnoilnhC6Sjev1+qdzzSJxZ0h1h41boaRHSoqXGtnvXosb4MYZ416LiLYDBkFdL1yLJhhPOsWNXMg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-restricted-editing": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-48.3.1.tgz",
"integrity": "sha512-53u38P5fpz/8qwanJtGYtgmi5Szqg+6VhqnbSyPWOWK8dlJAUi0aMJy/ihseFkUFt2AfaUZHlUW7WzpwttbDCw==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-select-all": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-48.3.1.tgz",
"integrity": "sha512-bPXjCzqNeroJxnpW+dHXtBb5vigap7cwANJ6LS9lvTbQGKk3Ocq6jO0RlhmJ9RvcuHwAMH60a+23zW3PJAOkAQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-show-blocks": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-48.3.1.tgz",
"integrity": "sha512-Frzw96nYEET7ymiEUvMHjkJ/QClUfsGTd+jJufXaT9hUx7t1nONVQVhzIEIruy8dgqt8prIRqVpczD3mQS8T4Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-source-editing": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-48.3.1.tgz",
"integrity": "sha512-20rfbBZgZjEYnFCpS69U27TKZq9ZLMzKCBSXv8Kmv4qObHGgZMBY+R5UsG1VpIRG5DdUjP9lBWgmCVkzlof1EA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-special-characters": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-48.3.1.tgz",
"integrity": "sha512-gqfxywMLASyjJV7AvhV3WCX3QYuizjWG0SxUy7zOils00UjIeImfQW07X5u/FSi2GLeUsOjSfttsAbtJXQXHzg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-style": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-48.3.1.tgz",
"integrity": "sha512-rYikWptU+1Kd4UbzZ0s04tO6CqlEoPzfX09jfdwWSNYLbgB9+CfrxnkbnFvfg3SCAgtFDactc07TBtxsH9+Eag==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-html-support": "48.3.1",
"@ckeditor/ckeditor5-list": "48.3.1",
"@ckeditor/ckeditor5-table": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-table": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-48.3.1.tgz",
"integrity": "sha512-aoVzI5Srl5g0AP2XslxNugJFeogQGstk8JiCwPN1cRvtOb/e7pvMYBsAXhqdf3GFeq3E7HMw/fceXmDLlWJPgw==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "48.3.1",
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@ckeditor/ckeditor5-widget": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-typing": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-48.3.1.tgz",
"integrity": "sha512-kBtgdIA9oWqrmTk24WRxaK/p91N00Mz0XE9/w7NDiOLAPBJNeBvt8Le4zOzyeLt8tn+DCP2h/BQg0t04oFveNQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-ui": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-48.3.1.tgz",
"integrity": "sha512-bs0VgxH3xfs8B14it+5dNK9I5YIWDI27qxArJqmfDFbnVBVtxlaLtnntyykbrNWCck53LKZ2qCpDueVsCV2JmA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-editor-multi-root": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"@types/color-convert": "2.0.4",
"color-convert": "3.1.0",
"color-parse": "2.0.2",
"es-toolkit": "1.45.1",
"vanilla-colorful": "0.7.2"
}
},
"node_modules/@ckeditor/ckeditor5-undo": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-48.3.1.tgz",
"integrity": "sha512-psJd40k7knNqfbdCaBc6D6cC88exr4Y6AwQihUn/9DaQv8vBjJDNsifVsSgfBemT7QIchUDIoJwYkF8hmUDT9Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-upload": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-48.3.1.tgz",
"integrity": "sha512-6hEOB4rAgtbDhntBw7Vw1wyn6BxR03mXNSGaKHyJ+OCZ1FzNAcCCkHI+6CI5INpAiAp8ISXfzblKec+EB0iA0Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1"
}
},
"node_modules/@ckeditor/ckeditor5-utils": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-48.3.1.tgz",
"integrity": "sha512-hLZLjgwWSQKB3/a7AULSB5066PujeqwQiiUwU71ObxLGAHJA5EWD102Jp093BmiFvf5k8/hXFqOtUuaihDCXtg==",
"dependencies": {
"@ckeditor/ckeditor5-ui": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-watchdog": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-48.3.1.tgz",
"integrity": "sha512-qv0D8GdaRdP9kM5LFYNNZTT3kN70jeEilZIA8wqLDf2+nIkz68xNZiwMbad9yrjGbMe2iQqrURTmML1/2+FRqA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-widget": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-48.3.1.tgz",
"integrity": "sha512-2XrBEd0pz/aVmSlXYC/Q3vgGVLadtN2KK5T3euQv3MSWTZtA66ZQKeKLFwl5pNvv/ItnCHUDz/RMEAP1CqsfTg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-enter": "48.3.1",
"@ckeditor/ckeditor5-icons": "48.3.1",
"@ckeditor/ckeditor5-typing": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@ckeditor/ckeditor5-word-count": {
"version": "48.3.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-48.3.1.tgz",
"integrity": "sha512-ylAMJ0LNVJasul0cVbZFSIXK4tdZ/850NXPjtTiL63K//2bYfxRj3Xwh+mN14H4NX3ozkJhN2jaA9PU6Gmfs3Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "48.3.1",
"@ckeditor/ckeditor5-engine": "48.3.1",
"@ckeditor/ckeditor5-ui": "48.3.1",
"@ckeditor/ckeditor5-utils": "48.3.1",
"es-toolkit": "1.45.1"
}
},
"node_modules/@esbuild/aix-ppc64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
"cpu": [
"ppc64"
],
"dev": true,
"optional": true,
"os": [
"aix"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.25.12",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@esbuild/linux-mips64el": {