-
Notifications
You must be signed in to change notification settings - Fork 43
/
package-lock.json
1893 lines (1893 loc) · 74.3 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": "ai-admin-jqadm",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ai-admin-jqadm",
"version": "1.0.0",
"license": "LGPL-3.0-or-later",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^43.1.1",
"@ckeditor/ckeditor5-vue": "^5.1.0",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"@vueform/multiselect": "^2.6.6",
"awesome-graphql-client": "^2.0.0",
"chart.js": "^4.4.3",
"chartjs-adapter-moment": "^1.0.1",
"chartjs-chart-geo": "^4.3.1",
"chartjs-chart-matrix": "^2.0.1",
"flatpickr": "^4.6.13",
"jquery": "^3.7.1",
"jquery-param": "^1.2.3",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"sortablejs": "^1.15.2",
"sprintf-js": "^1.1.3",
"vue": "^3.4.15",
"vue-flatpickr-component": "^11.0.3",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"esbuild": "^0.20.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==",
"license": "MIT",
"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==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.25.6",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz",
"integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.25.6"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/types": {
"version": "7.25.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz",
"integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==",
"license": "MIT",
"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.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-43.1.1.tgz",
"integrity": "sha512-DCR98QdQKCYCQFT23CwR6PFLPLT3rlh89++hFIhUpykDz2pljEDC8uFNWjKY+b/5/P/jkTICLtt8+DlF8aN+/Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-upload": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-alignment": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-43.1.1.tgz",
"integrity": "sha512-mjQPDmfPgKbMQp8JCR7Vg7MpRax44tSrtyoofSl/oMKDh2bXtwEnMKJlv501scl95S8VN2Pfnxj5+31N89j0Xg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-autoformat": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-43.1.1.tgz",
"integrity": "sha512-/NP29+d5y+AcffZEBJqH42Bj/M76OuBPG3DNEz9XEBbF9ADC9jqb2pYzDgiit/9VukNDtoLJjQ6HGxjdwzdLfg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-autosave": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-43.1.1.tgz",
"integrity": "sha512-GYeEF0NL0KLS33lZ4Uc4R2hAofTH+EE/Pulzg1V0rSIPghLNULsvMRiqe6PnzYDKtD5et1YpaIZRp55DGzJ/gQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-basic-styles": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-43.1.1.tgz",
"integrity": "sha512-xFfL6JaVkkNRnFET/ld6MGvbifFxJY8bv3zvAAlphXsCBxNDH9cZWzG605PF6SYTucCUXD4dtW0teLMmdzklaQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-block-quote": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-43.1.1.tgz",
"integrity": "sha512-VYZlQisRptiiqVRnMVBcwc3yRilpSoFTKiMXTzrYukUZLhPL6fiWVeMe/N9ygtdtGp3oYF/rSNv9H/8e6nNVYw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-build-classic": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-43.1.1.tgz",
"integrity": "sha512-yCg+5u2ihdunYxieHsgHWACXbTMQZajy23wtGAuED7Tv+Uf41XPmBmQLoXSY43LyQOeSNvgEFdb6lUrl5Gi05w==",
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "43.1.1",
"@ckeditor/ckeditor5-autoformat": "43.1.1",
"@ckeditor/ckeditor5-basic-styles": "43.1.1",
"@ckeditor/ckeditor5-block-quote": "43.1.1",
"@ckeditor/ckeditor5-ckbox": "43.1.1",
"@ckeditor/ckeditor5-ckfinder": "43.1.1",
"@ckeditor/ckeditor5-cloud-services": "43.1.1",
"@ckeditor/ckeditor5-easy-image": "43.1.1",
"@ckeditor/ckeditor5-editor-classic": "43.1.1",
"@ckeditor/ckeditor5-essentials": "43.1.1",
"@ckeditor/ckeditor5-heading": "43.1.1",
"@ckeditor/ckeditor5-image": "43.1.1",
"@ckeditor/ckeditor5-indent": "43.1.1",
"@ckeditor/ckeditor5-link": "43.1.1",
"@ckeditor/ckeditor5-list": "43.1.1",
"@ckeditor/ckeditor5-media-embed": "43.1.1",
"@ckeditor/ckeditor5-paragraph": "43.1.1",
"@ckeditor/ckeditor5-paste-from-office": "43.1.1",
"@ckeditor/ckeditor5-table": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-ckbox": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-43.1.1.tgz",
"integrity": "sha512-2suCDhe5HlutZz52iBXRaVAcht/E4wBdZsF6ZL+hELNuqvYM2PCb2/FZTtxQb50mDlWtJtLidRc49COAr0k1QA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-upload": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"blurhash": "2.0.5",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ckfinder": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-43.1.1.tgz",
"integrity": "sha512-f5N9FtJTSRfEUaJqr0LpekoSAIMktyiwbWeGQhbYseCCV0+Qsw6W/wzuWMFNe5GELg0R/0tG0H59/2m1wTFFbw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-43.1.1.tgz",
"integrity": "sha512-QF0zyq/NhLFm8V/VBBn+RWjiaAd5eyeCKz7zQKyBcSW27IaazAnG0+HHZeydZkT4vntad71t6bi6ZWzL/MJxwg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-cloud-services": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-43.1.1.tgz",
"integrity": "sha512-YprETdoRcu/2yxVCuoOrY+f4G0Qus0hIMfMuRZ9jbFWDDwZgHiXrFXvE0W9o9N51rKffWnTbs0GljsaXVit1+g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-code-block": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-43.1.1.tgz",
"integrity": "sha512-Nil+MNeirroHop5Onj23L2v17Jokgc6wvJYqzH+85OvlrJeEsfFauxlW+S6TI3ypZT04yLJ0zdpaZ/FYC5+NxA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-core": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-43.1.1.tgz",
"integrity": "sha512-qtbnD+24dK+ANVUgs+unZ0qX64NA0eG6k344q8fhXuHdPRKk55BDkjdmpv/Fh9Y0beo9EDqUPE/P7agv8lucBg==",
"dependencies": {
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-watchdog": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-easy-image": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-43.1.1.tgz",
"integrity": "sha512-BSiqxe6rFzNIROz7uny8SyGndQX070hlktJT5sQNO46lB+tsyFScUVXjzduSlm2fCG/2PFA83skR3/7cTAkBbg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-upload": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-editor-balloon": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-43.1.1.tgz",
"integrity": "sha512-hIfocf3a/zXj1SLElF58LIVXOP3GphpajrsNXysSxccb4LNUQjvqMqwYaHDkib0Oh4AznsCwfBE3CJ3grUiI4g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-classic": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-43.1.1.tgz",
"integrity": "sha512-8/yuGbTtY/BF4Oi5wDd9/NHNmIvtb+f5YvqSkG7ZtWy0M+uHru8xM7hhUqUKwrG2jVxB2MFRcDGAE0YlVqs98Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-decoupled": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-43.1.1.tgz",
"integrity": "sha512-Vs7yVUjOM+QiwnS6v987YGen0xwku07pQyhl+ihW6cphJymaJ/kPNvkR2ZCfE5e/Av0ckz14DQj4vOmotx+Vxg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-inline": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-43.1.1.tgz",
"integrity": "sha512-6rNUJPG23c0Nm4cbb5ReYiARhBk8crdpkYig6sR+8m//ah9SzO0H4H/brHtYHsV6FxOYDwxEJdaMSDP7rWUwkQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-multi-root": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-43.1.1.tgz",
"integrity": "sha512-M1NBPFLZZAVJt22Ipy/JYTeOPPGCRDy3nWnCoBR2U79/FkEQNRyUtkR58EA4dLHdaeAiaWX8w7z2DrLKxOUltw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-engine": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-43.1.1.tgz",
"integrity": "sha512-gOqbGwEqbJDgbSRM0Dv3ArQRGTmX2pySNdQIseLnENVaq9r5FUu9T2moKYJbGl8t/DIqBAxOtdHQPafrXtk7yg==",
"dependencies": {
"@ckeditor/ckeditor5-utils": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-enter": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-43.1.1.tgz",
"integrity": "sha512-7JjNCe4qVtiLgnGC8P5WJzcDGTOXzgpos8nPSR52vsqNANNZQ/iAByDoPP7WCIijJHHjeFoBk0ytk2qfXppjkw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-essentials": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-43.1.1.tgz",
"integrity": "sha512-qbo080qotWmq19SnUkFspT9swHy2160nHFOdtx4LrQtGPbjSzS2EBFNHmkf31gUmEcNZCbegSIl0UT5IvIIV8g==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-select-all": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-undo": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-find-and-replace": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-43.1.1.tgz",
"integrity": "sha512-BmSwyTsL5fAo4I2gRq7gzbU+WNAoaxWOPZCip/cGNdqzV9Utl6kTLx/DdxAhh8B4KTj8Rqv8Cmg1862HMkfKkw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-font": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-43.1.1.tgz",
"integrity": "sha512-QQrLf3zWp1T0QttKdFoC/fbEF69hzsHxNzmOeGVwAavgW0qpbpSEvTT5kRHm1tYlGeSR8N6/SVXgb4xHUxwvHg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-heading": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-43.1.1.tgz",
"integrity": "sha512-Gr4rxChoamevxNf/6DKRYltOcLuCqrqFOCWrOO00JRHN8dHW81TgMJVGf4xeM4bAlFbMSqM3Y2vRCPhtdTAarA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-paragraph": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-highlight": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-43.1.1.tgz",
"integrity": "sha512-hrzzTQ1tAHIUGdNingpyMsrBeb3herfSMXOGylkkTqg/SqtnUlVJbPZ8NVUrmlw6hQQMl7HDqBJGdHoesvB8TA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-horizontal-line": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-43.1.1.tgz",
"integrity": "sha512-FLTTPShC+/E/fAUYAxyMHOLDYCYAAuB3eXHonPekXjiAdkhchPibkIz0c3DgdjRGFhfGE4/XQ4PyU5oa5BKt5w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-embed": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-43.1.1.tgz",
"integrity": "sha512-ggOFwmpNAiT0nwm/++GZR/9V256mHxA0l7riL422l9YOSToGf5kukemsc7PIifuNoBXCzFrkNipr53ctxZkomA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-html-support": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-43.1.1.tgz",
"integrity": "sha512-eF2eZU6sbU0ml+z8nSd7cDhk3ihrV9R7gih/bWOGvWa94bpaNVOd4c7e3F0ZPQVlxfwT1X99Y7aDNSNcbWs53A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-image": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-43.1.1.tgz",
"integrity": "sha512-6xOJsG9nYIIpwf/Kj0MARts5KK+eZ+awpAvljYgx+xjII4KEAO1dKSKjX5Fmx3zjDWieJelbLit9tvQTcqyq8A==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-undo": "43.1.1",
"@ckeditor/ckeditor5-upload": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-indent": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-43.1.1.tgz",
"integrity": "sha512-8UjEX0TlnQgxzRkIAwJMcrc4rQSrpFuxUmo4b4xWIuzTg2p/+XdmDebi1p0AekB14ZW9J4UjB0U8NTWJQ++NyA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-language": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-43.1.1.tgz",
"integrity": "sha512-lNqZn3rTmGDPEvZwAZZF6R1CkhnAh0cPXU4kuIs0+sshUcWGTQTO1l38Qzr4BGLrH1u7S2OilDe5GwfujF2vaA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-link": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-43.1.1.tgz",
"integrity": "sha512-pk/ginodZGD8H5ezH9uhPjV7bK2wKkx80Eno9pt/c05+rsrHOjcibrS+SXBQ6qbK/W6Zo9ZUFwWC9HyNIiCwqA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-list": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-43.1.1.tgz",
"integrity": "sha512-hH9Ny4TRH87Iz7WDw8eVKHFFmY4sOrlbPcXutcZCfYGuiDGAvRaeinAwitnWwy+bs5mAdQcw/araWAgMoVbEpw==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-markdown-gfm": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-43.1.1.tgz",
"integrity": "sha512-7hnOEZdow1/aR69RXqTPoTczyAeIkjwYxgXbvt+pWgtJinuGtW97pc2X6ZSivsq+SWa+6UCe3TnzbyUrIdcqzA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"ckeditor5": "43.1.1",
"marked": "4.0.12",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-media-embed": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-43.1.1.tgz",
"integrity": "sha512-MEydmh/mNUpMpNNV6BDWK8pCC5qn++WPDyDMYSFi9bX8hr9EC7AufoNG+Lh46vEnPl49cAy18WZvlyoX7nCyCA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-undo": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-mention": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-43.1.1.tgz",
"integrity": "sha512-ErKPpapKx7HXTDgfGg6h3IRac70gCn6cwLIfuSiJ3bg8DSV5q7Rbi5UG8fRdOiT3mu/ZWI7gdP0ei6t/R6ddeA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-minimap": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-43.1.1.tgz",
"integrity": "sha512-igsONpmmJse/RY/3ZAbtp5mlUzFHHAnFvUaNDPpWVDZ67sSJfCurAJqkrA9zzz4+pErdpryms067c5TAp8H9OQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-page-break": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-43.1.1.tgz",
"integrity": "sha512-QuY6TYsgDZfeYWw4CZGgUs/3B2gHq4GmfSO4RuOMaQYPPnFOPFlyHEst9LDE6BbAa9ZWCdGlvUVxCfuAEDueww==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-paragraph": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-43.1.1.tgz",
"integrity": "sha512-9ehs/b2K95W0KPDKwnfxDYHs4ypOtDNT4yB/ZGkJP96NV5XJGGQVBJIVmq0HrMGh4thdwJWofq7ZBIBjN3HMwQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-paste-from-office": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-43.1.1.tgz",
"integrity": "sha512-dMftOM7eFMqFFZGdzo04PalimSQgNnbAp4adiVVSQDQ9reenWJD9iE1VCT4C5MnX3q4MXGAIBmqOubsqwfI84g==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-remove-format": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-43.1.1.tgz",
"integrity": "sha512-LhzNvdJ3SrynhCN0BwAmjG1wNcPFy0nYgraS6Nj+P57up64EzDMCsJZ5EY7SsDgtm1rCRZh8liHfbY/6DLz6Ng==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-restricted-editing": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-43.1.1.tgz",
"integrity": "sha512-QwDclw+HEYxJ3uLP0VNo+L0YMhv8uc/6RflEkh2E2w/keiPVrE41vzrAW/G0VD85MMVMdUrmYi98soDPsvZGVA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-select-all": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-43.1.1.tgz",
"integrity": "sha512-NAxjt604pS6LcEsmH+yMHphrUAV6koACwauyj9llfZErd+VWlzsComiqgEN0ZbZ+iVCem4Fl+TT/82rTcGgtbg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-show-blocks": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-43.1.1.tgz",
"integrity": "sha512-vb9FCIAnWZ0E161x7ulJPtLKtvxI+Rxv8qAikGNrbvLr6x9U9j0Y7WnLtmoYUozKIsRPQ2zFl7qciv1dPoeJTA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-source-editing": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-43.1.1.tgz",
"integrity": "sha512-NH5TSZJjroUk9u1eQBlGNSnHvcesednao+YeicZQzRBvPMqIV+6J+MdMj65hlqyfbEsbeHrIKCdMLo/H28+4ZA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-theme-lark": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-special-characters": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-43.1.1.tgz",
"integrity": "sha512-PQ4E0Rn7dxftM/h6zRLFptrD2xgMHXUVRZJuV6iejK+C/fVAM51PWOOUGUAPKWH1tY2bryiqdxF3yNyU2fpC4w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-style": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-43.1.1.tgz",
"integrity": "sha512-sDrM3lCNlx9QdZaEeRUjf/ukO3sIriRn3dNs/6n6+pGJThlzju3/ikryywJ5AfxzmpCK7CVx1H2x2R9krSV4PQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-table": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-43.1.1.tgz",
"integrity": "sha512-rm7RcyYdhKlokBPxianNJSVdAQS7ng9T8UMbc7wJBVIEUXgqbqQ57nGm4IIX59FXSA7H9Dj/EFW4DT9YAaITvg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "43.1.1",
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"@ckeditor/ckeditor5-widget": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-theme-lark": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-43.1.1.tgz",
"integrity": "sha512-7huWGsetISvNOzQurO1zqLL25YnGP3vgsOysKHz0qKgOi+UwXWxG8IYnzHi0qN4ox78vgyCR+nJvzjVz33gJEg==",
"dependencies": {
"@ckeditor/ckeditor5-ui": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-typing": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-43.1.1.tgz",
"integrity": "sha512-2YB3IfGPWct1oIlYGCL5Z5JQ/g2dpn8zr9syVTQJ/fAPjqi8Ig53lTaCQvpftnq4I+jESXAl4Rr9bIosqDVjAQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ui": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-43.1.1.tgz",
"integrity": "sha512-GNf0y56cT1HzgaG8wPyNsXlG4lZJMag+UKL6L3Y8uYg9/HurqJjJVnZcCJZ7T1t3D26fOvCIZ3KhW6AtRrnDrA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.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.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-43.1.1.tgz",
"integrity": "sha512-qX8jy5d8H4emWNCmA4EN2ZE/UGfBN1AqhMYtdX73EIxnDwVzT6Hd+GUaScDQoKn7Y81vO5dELPKFddaQN077Ew==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-upload": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-43.1.1.tgz",
"integrity": "sha512-VIylGThmbwCKazx2XZBS8WYW7AYOgZzS8zQ1WDwT80tfOC3cjykNvg59eH7OACDeWud1LD47/idTj0wVC8gsIg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1"
}
},
"node_modules/@ckeditor/ckeditor5-utils": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-43.1.1.tgz",
"integrity": "sha512-x7d1Iy2j6be74Nqv5MwWjBtVX8xv3lsbkUc0n/K26Edql5d2sk05MeA5kyBowHzqFEVDgDOUCj9Thl5KrJpb5w==",
"dependencies": {
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-vue": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-vue/-/ckeditor5-vue-5.1.0.tgz",
"integrity": "sha512-KEx4Tj2Irr4ZbLG8LnaKpb0Dgd8qmLmKFWeiKkQwM3RAAeYRYOCcBVB2Y168I9KA8wRosPxgOO9jbQ92yopYHA==",
"hasInstallScript": true,
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=16.0.0",
"npm": ">=5.7.1"
}
},
"node_modules/@ckeditor/ckeditor5-watchdog": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-43.1.1.tgz",
"integrity": "sha512-/IyxNGhYKzioxwzK+H5NbgzHPNOBHkNbUwnC3vM89OOLxu5g77edEn/kcSBsEABYweddUK8LrPrKKvTcYC+tuw==",
"dependencies": {
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-widget": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-43.1.1.tgz",
"integrity": "sha512-3S6T7bImVAX2OHkrKeTRRWn+WE5nJyvrRPNItPTXhxgDPrbAYRpvH3mtcoUjb24cw1dDfHRwolBTXRv1DxqAUw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-engine": "43.1.1",
"@ckeditor/ckeditor5-enter": "43.1.1",
"@ckeditor/ckeditor5-typing": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-word-count": {
"version": "43.1.1",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-43.1.1.tgz",
"integrity": "sha512-eMLf6iC/yH2ZSJtnfU9W/92J/JYwGhrU8AGsrffGqPkJkHSe9qbSUHhpEyae+Q+GTK6FMU1pEC6tAdlxOWmRcw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "43.1.1",
"@ckeditor/ckeditor5-ui": "43.1.1",
"@ckeditor/ckeditor5-utils": "43.1.1",
"ckeditor5": "43.1.1",
"lodash-es": "4.17.21"
}
},
"node_modules/@esbuild/aix-ppc64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz",
"integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==",
"cpu": [
"ppc64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"aix"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz",
"integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==",
"cpu": [
"arm"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz",
"integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz",
"integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz",
"integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz",
"integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz",
"integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz",
"integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz",
"integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==",
"cpu": [
"arm"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz",
"integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz",
"integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==",
"cpu": [
"ia32"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz",
"integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==",
"cpu": [
"loong64"
],
"dev": true,
"license": "MIT",