-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
1751 lines (1532 loc) · 77.9 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@babel/code-frame@^7.18.6":
"integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.18.8":
"integrity" "sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz"
"version" "7.18.13"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.18.10":
"integrity" "sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.13.tgz"
"version" "7.18.13"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.18.13"
"@babel/helper-compilation-targets" "^7.18.9"
"@babel/helper-module-transforms" "^7.18.9"
"@babel/helpers" "^7.18.9"
"@babel/parser" "^7.18.13"
"@babel/template" "^7.18.10"
"@babel/traverse" "^7.18.13"
"@babel/types" "^7.18.13"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.1"
"semver" "^6.3.0"
"@babel/generator@^7.18.13":
"integrity" "sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz"
"version" "7.18.13"
dependencies:
"@babel/types" "^7.18.13"
"@jridgewell/gen-mapping" "^0.3.2"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6":
"integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-compilation-targets@^7.18.9":
"integrity" "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/compat-data" "^7.18.8"
"@babel/helper-validator-option" "^7.18.6"
"browserslist" "^4.20.2"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
"integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"
"version" "7.18.9"
"@babel/helper-function-name@^7.18.9":
"integrity" "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/template" "^7.18.6"
"@babel/types" "^7.18.9"
"@babel/helper-hoist-variables@^7.18.6":
"integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-imports@^7.18.6":
"integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.18.9":
"integrity" "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.18.6"
"@babel/template" "^7.18.6"
"@babel/traverse" "^7.18.9"
"@babel/types" "^7.18.9"
"@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9":
"integrity" "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz"
"version" "7.18.9"
"@babel/helper-simple-access@^7.18.6":
"integrity" "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-split-export-declaration@^7.18.6":
"integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-string-parser@^7.18.10":
"integrity" "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"
"version" "7.18.10"
"@babel/helper-validator-identifier@^7.18.6":
"integrity" "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz"
"version" "7.18.6"
"@babel/helper-validator-option@^7.18.6":
"integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
"version" "7.18.6"
"@babel/helpers@^7.18.9":
"integrity" "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/template" "^7.18.6"
"@babel/traverse" "^7.18.9"
"@babel/types" "^7.18.9"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.18.10", "@babel/parser@^7.18.13":
"integrity" "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz"
"version" "7.18.13"
"@babel/plugin-syntax-jsx@^7.18.6":
"integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx-development@^7.18.6":
"integrity" "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/plugin-transform-react-jsx" "^7.18.6"
"@babel/plugin-transform-react-jsx-self@^7.18.6":
"integrity" "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx-source@^7.18.6":
"integrity" "sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.18.10", "@babel/plugin-transform-react-jsx@^7.18.6":
"integrity" "sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz"
"version" "7.18.10"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-syntax-jsx" "^7.18.6"
"@babel/types" "^7.18.10"
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.7":
"integrity" "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.18.10", "@babel/template@^7.18.6":
"integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"
"version" "7.18.10"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
"@babel/traverse@^7.18.13", "@babel/traverse@^7.18.9":
"integrity" "sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz"
"version" "7.18.13"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.18.13"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.18.9"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.18.13"
"@babel/types" "^7.18.13"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9":
"integrity" "sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz"
"version" "7.18.13"
dependencies:
"@babel/helper-string-parser" "^7.18.10"
"@babel/helper-validator-identifier" "^7.18.6"
"to-fast-properties" "^2.0.0"
"@ckeditor/ckeditor5-adapter-ckfinder@^35.1.0":
"integrity" "sha512-oq0PqLsDbgNQsVE85X9/TiQLNa+Nt+/eEKRNcSgzELplpGIQBQExg6oXwCAEg7IjAFzg1q7v8dN0NPSQOJ38nQ=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-autoformat@^35.1.0":
"integrity" "sha512-11eO3vx9n/L49HA0Atg+e7qAKRURGnyNvRzFS3wIXqK8Ap7vQXmrgOK/M5pObIo5Oi4pq/40iz/KroFLqC4vUA=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-basic-styles@^35.1.0":
"integrity" "sha512-tqqJoXEqd/sLEwLeO4RfYlGyys9JlXPLQa3s7fQGeqD6iA5WLjBA5GFBoJLFkeSBhSq7OaKmEM5O5i6RjwVkkg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-block-quote@^35.1.0":
"integrity" "sha512-6bMsajOYtw7nFAa/wyFPuAwfCmtKtMkkPOh0F1q8mxniaR+vn92mBZO9yP0cjNUWIcE4jSrPF/K0O1euSBpMbQ=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-build-classic@^35.1.0":
"integrity" "sha512-fvIqb/JpjZgz8psEAHxoMDdTFWqnlSiAEp6t6ggW0ck8rBvMWTJOuGGqyBEtzagvNGjb2BBozvHDjWr28O7OYA=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-adapter-ckfinder" "^35.1.0"
"@ckeditor/ckeditor5-autoformat" "^35.1.0"
"@ckeditor/ckeditor5-basic-styles" "^35.1.0"
"@ckeditor/ckeditor5-block-quote" "^35.1.0"
"@ckeditor/ckeditor5-ckbox" "^35.1.0"
"@ckeditor/ckeditor5-ckfinder" "^35.1.0"
"@ckeditor/ckeditor5-cloud-services" "^35.1.0"
"@ckeditor/ckeditor5-easy-image" "^35.1.0"
"@ckeditor/ckeditor5-editor-classic" "^35.1.0"
"@ckeditor/ckeditor5-essentials" "^35.1.0"
"@ckeditor/ckeditor5-heading" "^35.1.0"
"@ckeditor/ckeditor5-image" "^35.1.0"
"@ckeditor/ckeditor5-indent" "^35.1.0"
"@ckeditor/ckeditor5-link" "^35.1.0"
"@ckeditor/ckeditor5-list" "^35.1.0"
"@ckeditor/ckeditor5-media-embed" "^35.1.0"
"@ckeditor/ckeditor5-paragraph" "^35.1.0"
"@ckeditor/ckeditor5-paste-from-office" "^35.1.0"
"@ckeditor/ckeditor5-table" "^35.1.0"
"@ckeditor/ckeditor5-typing" "^35.1.0"
"@ckeditor/ckeditor5-ckbox@^35.1.0":
"integrity" "sha512-4SEBc1AlS9D0pHacK76S432b72iriuWMxx1L8f/91DY0pJIMWUKIqH+mrho2DLASngWNegrYOT7muD2ExEAMQg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-ckfinder@^35.1.0":
"integrity" "sha512-lLY3DKe8G4etL5MTnfFSUZKa8zdZKi1rwiqZyAY5DUuMgrWnfL5Vof+W3yZJ0pFIQkgrAEl7j9Lct/afZq9AwQ=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-clipboard@^35.1.0":
"integrity" "sha512-LfHDOI7gfQzIKbSgDi429SI75p4Scw+YK6zISTRN2IiNlAfsozjeYltm8O3ab7FFfBI8+TalnEx0gI41TXog0Q=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"@ckeditor/ckeditor5-widget" "^35.1.0"
"lodash-es" "^4.17.11"
"@ckeditor/ckeditor5-cloud-services@^35.1.0":
"integrity" "sha512-c7Bm80CAbkDlaWUt+7LkDe6eGKzY7rbqhZ7CpAQURWo3mXUgcfiV+kQPAvF0/9wDiCi8DpLGg7HN9GMQcWHvnA=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-core@^35.1.0":
"integrity" "sha512-yqPP7tEOT/rsxtDf6qvL5Yszmf2MZJJDK426SQryJiKpAEysX+337FEeLpK1silIL+UMejh5Y2/oNr4L+wTRXw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-easy-image@^35.1.0":
"integrity" "sha512-5lhZxCR3Q+BJ3i4NoCBSnVYcOrJmPoBvbTFs5d6D4qlmR2C0y5EzWwQmPtO/bm380Fgg1DrZWH2xSGYpePB3PQ=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-editor-classic@^35.1.0":
"integrity" "sha512-cuu0/cxJgReHbnMPdMOw7YWOogS2WwLo6S/WAP5OjHdXRb/oQOGcr+vi4+guRdSMz5YmXjr4lvskYgU4B4dF6A=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-engine@^35.1.0":
"integrity" "sha512-1xyzPkN2N0xzdeVpT53Eqj4Awfbwl6lN3JIpgntBmCOdiZejRZipdPFkbS0ZkhG14aLAV1blbk/ZMJSsOmaTWg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-utils" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-enter@^35.1.0":
"integrity" "sha512-H+6vscBZqzU/Q4/N8so/UJzH2tiGN5cDa/5qbXGr/WwyWDez2Nl2y9bAl7ASB4vhzqr2/1WJ4ckBMGke5zR6pg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"@ckeditor/ckeditor5-essentials@^35.1.0":
"integrity" "sha512-qk09lYvIpWxRfDTdu/W36481PsvumiW3jTLC6Y41KOzjN5QQbC2uXNjaDKSYTWeQJB0xfeCDFl102DF//v4kxA=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-heading@^35.1.0":
"integrity" "sha512-dempsgWmcD9lLr7OlgsoRxC+GAVafRbweXO0J4RHRFFL+f5lh43Z+sUfuiXM5cGB03YvonSitt3Bizhj2hIxoQ=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-image@^35.1.0":
"integrity" "sha512-7qqccl2dYX3dl7rnBuRHF1Mxpns6zG9Ink1rlpPMEcuA7NdA9VDglMDCvWYOLSGVObVOM7ecceHYeYhzNSeyrw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-ui" "^35.1.0"
"ckeditor5" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-indent@^35.1.0":
"integrity" "sha512-yYgSBzHlln273S4H1aWfzqoMcb+Fn1yZ976Pj2ouM7bP22d+01ptNGSe6fiEqtmDiUu2gCj9W0tOwI0Oowb6fg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-link@^35.1.0":
"integrity" "sha512-eoCE96mfW8pAFpP3wE0E83mrg7SVSTnut0szLyWmQSiU63N0KJMKOZy6faImrMEgkdFppfJ966+lgBh4fB+Taw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-ui" "^35.1.0"
"ckeditor5" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-list@^35.1.0":
"integrity" "sha512-NsGNRhYDI9xNm0wac3sE640LzpUSxQAzi60f2ap8p2pSL2RXpPJ3YA8Z+xmYP4xpJpu1eEcbOUnZDXjsKoct1Q=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-ui" "^35.1.0"
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-media-embed@^35.1.0":
"integrity" "sha512-PpEXBE89KFFmrDpNKNbp52XPNOPr6rZXc+TOwd18E9R6upUATfLlajb5N2DYFqC7/DiW2pPJ9sSEF4SJZwNDkw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-ui" "^35.1.0"
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-paragraph@^35.1.0":
"integrity" "sha512-sgeEoOfaHbskbkYXfeGkakHJ0nfEoXvvhJeCQZn+o4FfJze/H5pvK14KNeiBsLqoLkKVcSMsHhYbEoeu9JNmKA=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"@ckeditor/ckeditor5-paste-from-office@^35.1.0":
"integrity" "sha512-/eu9w3A1XxO2xiMw9bYxf1MGvJwKaxU3G3sm3YpLJA7sWAm27d+PlNoUcfzetJWlD7hjfpt9Yu4+S4Oq8zILYw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"@ckeditor/ckeditor5-react@^5.0.2":
"integrity" "sha512-pN4acvCAIsuXaZDMttqy4dNBKXiJ6AS6P8NM3ggMc/rQkMIPp3YPhDWWf+pyQLUiewj1Bfr5EFeBfcXPQTOn+Q=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"prop-types" "^15.7.2"
"@ckeditor/ckeditor5-select-all@^35.1.0":
"integrity" "sha512-xGYRBiSOfnk2/Ob55CckKdyZ9E1b+e8qIQN6YkQd9Yj3tuyGAKJ9XelOxayqhlVvpD3ctpD/cRomUjSRilz2Pw=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"@ckeditor/ckeditor5-table@^35.1.0":
"integrity" "sha512-wwreqkavUiGW+k31itgdRrzBUgZVO3IFHvwxITGqPHsRfEPmDaqasowYrZBqHXK5JPcOmkMq8viAfThnVHltqg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"ckeditor5" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-typing@^35.1.0":
"integrity" "sha512-GiOK8MlsfsVRze4+qbNnT3t4FRvnFge6F+l/knxpM07DIf8qdtf1xVvFRL2OfBBGXbBpcQ6W4aqZhWtSUrPJ5Q=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-ui@^35.1.0":
"integrity" "sha512-nHi8Y9VBXhtva166PxvtOir+PKigmvpqzq8NPZwwZBsi+REPNy9gg6tWb9UCkwQXpGR1LOX4nEhKa3e1LKJbig=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-undo@^35.1.0":
"integrity" "sha512-Fe9Iji6odYL0HVM/xzFH4D7Z12K+Qcep6PGsRNks6y3ai11uukTV89WLKSdfzT5jwOq5AKhFdN+mSKPy1qfB/g=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-upload@^35.1.0":
"integrity" "sha512-EDa56I4v+MH9EpDavcCrZA+3l9e3bYqPY43GCwy5KP9N6rbar05OaUCMqPXA0ky2eupkae2tjp8MtCUxs/W+Vg=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"@ckeditor/ckeditor5-utils@^35.1.0":
"integrity" "sha512-a13oY43cHzS0uwLB/m6JKXhNNWftcNsUrI2/+UGsUElmFEnJ7aG24iHkdmh62kHY/X5SxowW9hBQR+yb6sKC4w=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"lodash-es" "^4.17.15"
"@ckeditor/ckeditor5-widget@^35.1.0":
"integrity" "sha512-Gi7zWRmcxkGWjx6pbn2HUqUUftVzCMfRX22SmOQOl9GKQmJAQaKtdM/sBnv0kY5DLsWLrI9HAED9TJhT0zuN9w=="
"resolved" "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-35.1.0.tgz"
"version" "35.1.0"
dependencies:
"@ckeditor/ckeditor5-core" "^35.1.0"
"@ckeditor/ckeditor5-engine" "^35.1.0"
"@ckeditor/ckeditor5-enter" "^35.1.0"
"@ckeditor/ckeditor5-typing" "^35.1.0"
"@ckeditor/ckeditor5-ui" "^35.1.0"
"@ckeditor/ckeditor5-utils" "^35.1.0"
"lodash-es" "^4.17.15"
"@emotion/hash@^0.7.1":
"integrity" "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.7.4.tgz"
"version" "0.7.4"
"@jridgewell/gen-mapping@^0.1.0":
"integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz"
"version" "0.3.15"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@segment/react-tiny-virtual-list@^2.2.1":
"integrity" "sha512-G01b9DrsQLF+8yFRyyJeZBZkzbFuqILG9C7SFFS+GtTFbjdprkHt0CL0riCPOZfe1ZXiT8z8MaKoWfNhrfUjhQ=="
"resolved" "https://registry.npmjs.org/@segment/react-tiny-virtual-list/-/react-tiny-virtual-list-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"prop-types" "^15.5.7"
"@types/ckeditor__ckeditor5-adapter-ckfinder@*":
"integrity" "sha512-baT+KeQG12qfu0iDu+TIy1BSM/OWzzvH8pTkSIckQhRwEt2mlW8jFNQMZGRi4kAmLabMoLvybiAn1yFDeepddw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-adapter-ckfinder/-/ckeditor__ckeditor5-adapter-ckfinder-29.0.4.tgz"
"version" "29.0.4"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-upload" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-alignment@*":
"integrity" "sha512-tZIF0svmHOHIvbnFM074b2CySBKKQxxZG5Y41UFAvkIYxel4LTZmFV3uTbdDTmniLRIbG219vOXtWHOJ5INB/A=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-alignment/-/ckeditor__ckeditor5-alignment-29.0.7.tgz"
"version" "29.0.7"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-autoformat@*":
"integrity" "sha512-E2bDInIyq6J5slWDAruCRTCvWxCH1Gm91d70/V2+YKiwpzj0X0EXyIPTqO01xTbdjHbCy9XiGIZ7fVLDrzchNQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-autoformat/-/ckeditor__ckeditor5-autoformat-31.0.1.tgz"
"version" "31.0.1"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-autosave@*":
"integrity" "sha512-auGeVgBG4HLXwPTbHQSsfGZcItntaBuBQN8LSreZea0ur4SJ6NKfh25USqIIQs1DUWYMDPiK6ODwSn2mhyfJ2A=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-autosave/-/ckeditor__ckeditor5-autosave-32.0.0.tgz"
"version" "32.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-basic-styles@*":
"integrity" "sha512-ap6vMacs5rjcWRlHrYPsZPshHoPR7sruPgbuzduGQCy7X86SglOPwtd6XvMOMItslbLv1wYbJ3h9+S1kBOVvfA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-basic-styles/-/ckeditor__ckeditor5-basic-styles-28.0.2.tgz"
"version" "28.0.2"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-block-quote@*":
"integrity" "sha512-FwNayTN7/8hdxCSA9cBiab4rEG3jERy+bF6qgr5pYwCiEthghlKT87IYqFYmVhznSsfqqR3KHi2a6GIfJMHpCA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-block-quote/-/ckeditor__ckeditor5-block-quote-29.0.4.tgz"
"version" "29.0.4"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-enter" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-build-classic@^29.0.1":
"integrity" "sha512-liWJN2v9xSJSLuU048nO7i7dr49T4REWhqSe7D7qcGcY3M5n7bVZnSNUnmBCB61WJg5iBl+KfwfdpDIDYp7+XQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-build-classic/-/ckeditor__ckeditor5-build-classic-29.0.1.tgz"
"version" "29.0.1"
dependencies:
"@types/ckeditor__ckeditor5-adapter-ckfinder" "*"
"@types/ckeditor__ckeditor5-autoformat" "*"
"@types/ckeditor__ckeditor5-basic-styles" "*"
"@types/ckeditor__ckeditor5-block-quote" "*"
"@types/ckeditor__ckeditor5-ckfinder" "*"
"@types/ckeditor__ckeditor5-cloud-services" "*"
"@types/ckeditor__ckeditor5-easy-image" "*"
"@types/ckeditor__ckeditor5-editor-classic" "*"
"@types/ckeditor__ckeditor5-essentials" "*"
"@types/ckeditor__ckeditor5-heading" "*"
"@types/ckeditor__ckeditor5-image" "*"
"@types/ckeditor__ckeditor5-indent" "*"
"@types/ckeditor__ckeditor5-link" "*"
"@types/ckeditor__ckeditor5-list" "*"
"@types/ckeditor__ckeditor5-media-embed" "*"
"@types/ckeditor__ckeditor5-paragraph" "*"
"@types/ckeditor__ckeditor5-paste-from-office" "*"
"@types/ckeditor__ckeditor5-table" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ckfinder@*":
"integrity" "sha512-RQVFIg/RrJzaA19FHD9Qzzl36sVUyyqY9ozWhEUWAmlKMUZW0MQBBtMN3vX5dZ81JtOaPVcwklNAa2yw6dqlkg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-ckfinder/-/ckeditor__ckeditor5-ckfinder-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-adapter-ckfinder" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-link" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-clipboard@*":
"integrity" "sha512-AN7iniYu2C417LRNuOBIirBokStvPwXm/NG72o9Ivfn0/i7J0VZiJ8KGp7Wmvrcg/bhFYfZsTbEOVW2c/59Rjg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-clipboard/-/ckeditor__ckeditor5-clipboard-29.0.5.tgz"
"version" "29.0.5"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-widget" "*"
"@types/ckeditor__ckeditor5-cloud-services@*":
"integrity" "sha512-fZOj+HBQbGFJg3SwUYqfdIQtFNnG2U2OCWkKDCIzUuejkdSeicF8P5GLSyNuDP0nTDdQMBqEWgzljqLZkJnkHg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-cloud-services/-/ckeditor__ckeditor5-cloud-services-29.0.4.tgz"
"version" "29.0.4"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-code-block@*":
"integrity" "sha512-x3D3B8I21za6VShc3twNRzKBN4+1+pOrsXhb+TPgQLG2Q9oeRgPXhaHMhdXGAGebMWhdFlPs0lTNsQTCVjXm6A=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-code-block/-/ckeditor__ckeditor5-code-block-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-enter" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-collaboration-core@*":
"integrity" "sha512-g0AKoJw820i/Biho6S9qYH1SaedjXr2P/gmnqO3k8/6HWiIMALaGDUkMgYvQC5nr+ZXIzLtv04Y0eb/9H1W3DQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-collaboration-core/-/ckeditor__ckeditor5-collaboration-core-27.1.2.tgz"
"version" "27.1.2"
dependencies:
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-core@*":
"integrity" "sha512-mVaU5+faOZ/2eR2jZb26H0JLqHLV/4a/p1/t7K9l8j5fMWTcubE5FRifjCk/TowazNW+/xcgRinyFnnUtNFUTQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-core/-/ckeditor__ckeditor5-core-33.0.3.tgz"
"version" "33.0.3"
dependencies:
"@types/ckeditor__ckeditor5-alignment" "*"
"@types/ckeditor__ckeditor5-autosave" "*"
"@types/ckeditor__ckeditor5-ckfinder" "*"
"@types/ckeditor__ckeditor5-cloud-services" "*"
"@types/ckeditor__ckeditor5-code-block" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-export-pdf" "*"
"@types/ckeditor__ckeditor5-export-word" "*"
"@types/ckeditor__ckeditor5-font" "*"
"@types/ckeditor__ckeditor5-heading" "*"
"@types/ckeditor__ckeditor5-highlight" "*"
"@types/ckeditor__ckeditor5-image" "*"
"@types/ckeditor__ckeditor5-indent" "*"
"@types/ckeditor__ckeditor5-language" "*"
"@types/ckeditor__ckeditor5-link" "*"
"@types/ckeditor__ckeditor5-media-embed" "*"
"@types/ckeditor__ckeditor5-mention" "*"
"@types/ckeditor__ckeditor5-minimap" "*"
"@types/ckeditor__ckeditor5-pagination" "*"
"@types/ckeditor__ckeditor5-real-time-collaboration" "*"
"@types/ckeditor__ckeditor5-restricted-editing" "*"
"@types/ckeditor__ckeditor5-table" "*"
"@types/ckeditor__ckeditor5-track-changes" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-upload" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-word-count" "*"
"@types/ckeditor__ckeditor5-easy-image@*":
"integrity" "sha512-pyBp+c0u1YydwAlWBubKzQrVkYmSApOjLmoc+F1yy/VuLelUhklaKnDlXo8HOjRXAndPHax0Yr966CWM7pQlpA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-easy-image/-/ckeditor__ckeditor5-easy-image-29.0.2.tgz"
"version" "29.0.2"
dependencies:
"@types/ckeditor__ckeditor5-cloud-services" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-image" "*"
"@types/ckeditor__ckeditor5-upload" "*"
"@types/ckeditor__ckeditor5-editor-classic@*":
"integrity" "sha512-Xrxav0Bq+rxr/H//nK4+n9o0GpHHMJpfe96wAm4EbjTI5mbBQYH5mCZmKdU8JzQTq6DUF8w9D92RIShqx0rvLw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-editor-classic/-/ckeditor__ckeditor5-editor-classic-27.1.2.tgz"
"version" "27.1.2"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-engine@*":
"integrity" "sha512-mjP5DE+VvVdUqgn9SL1qTr5HRouG6xj+hiFu4Hzz3HWLLBaCEfK6dPUTc6/QM/nMNlNl8Ux9551qCYMoKanzvw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-engine/-/ckeditor__ckeditor5-engine-32.0.11.tgz"
"version" "32.0.11"
dependencies:
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-enter@*":
"integrity" "sha512-qFv9QXk/kXkHQaS748FnO+XZoLOp34x25hOWpOFgBGbrfSZxJ6rYE+vk6BbX+b7sakj7glMctYeitNfGRMcVDQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-enter/-/ckeditor__ckeditor5-enter-27.0.3.tgz"
"version" "27.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-essentials@*":
"integrity" "sha512-vHtxf97CSVTRMGpxsEfDduRASHL32+9rvr1bVTmLlTgdykMiP0HY+TmFt07XtDTCpwAShehLu4bc8Qg4mkCCCA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-essentials/-/ckeditor__ckeditor5-essentials-28.0.3.tgz"
"version" "28.0.3"
dependencies:
"@types/ckeditor__ckeditor5-clipboard" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-enter" "*"
"@types/ckeditor__ckeditor5-select-all" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-undo" "*"
"@types/ckeditor__ckeditor5-export-pdf@*":
"integrity" "sha512-ZQdL2eI/zpPtmMB8Qd5VHqvDx8VNsnCs4SPMWgSG1lrwC7tM0cnyLkCcVxHQYcvZIlihzEF/QJJ+AV9waxT9Pg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-export-pdf/-/ckeditor__ckeditor5-export-pdf-31.0.0.tgz"
"version" "31.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-export-word@*":
"integrity" "sha512-2cpRFCsTHUh3xlbr3IdqfxhRs2AnfvViT0qekhk3SnP9VsUBiqN9CPcgGkBvk3huv30w5kiIpT2UH8l1Ff5Biw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-export-word/-/ckeditor__ckeditor5-export-word-27.0.4.tgz"
"version" "27.0.4"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-font@*":
"integrity" "sha512-Hllu+akGhKWRtdahWqkewbmRV4DwPxuXjYzjlvqKoPMNst6UcBOYxeLR/HKoIqI4bn4Vc/p7mZvzKJs0R7CNGw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-font/-/ckeditor__ckeditor5-font-33.0.1.tgz"
"version" "33.0.1"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-heading@*":
"integrity" "sha512-GfitzATatW4/ZJZ10VFI2OU1nG+r+c7JDHC/s/+9NzkqAyOEd8XTScAX0Sape+vqoNvnMUSAHNa03/ktAjDIqQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-heading/-/ckeditor__ckeditor5-heading-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-paragraph" "*"
"@types/ckeditor__ckeditor5-highlight@*":
"integrity" "sha512-Akq45EwzdI/egK/5YpKkoyYkEvq0w1EaBZMNOaKn8HaNFmhI2mQPwNzGHfEjbGDpKalI9cNTo0ImvqcqNgF+hg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-highlight/-/ckeditor__ckeditor5-highlight-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-image@*":
"integrity" "sha512-rEu93lPml8CuG8UesJa3BBH6Bi84eskeHXgH5kXCPi+lGQvhHd3VrNWa6XgihnO4Z/60i4IYhW48vdWZJ/Iv/A=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-image/-/ckeditor__ckeditor5-image-33.0.0.tgz"
"version" "33.0.0"
dependencies:
"@types/ckeditor__ckeditor5-clipboard" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-image" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-undo" "*"
"@types/ckeditor__ckeditor5-upload" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-widget" "*"
"@types/ckeditor__ckeditor5-indent@*":
"integrity" "sha512-ijVRz3hVR+KT4AmaHxOIyFd/Wi+XLtf5zDQuHP1DMAYgwudj6VGTfFl4vpebFB5wrWeY8EzkJZO1KsRlI21QdA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-indent/-/ckeditor__ckeditor5-indent-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-language@*":
"integrity" "sha512-8vd0nRXXZgV5oUF0g6DdBfwWAj3KlQGjpMgxgp6cXBQJ86fINCyyGpqpSmd5L4iSrJHAN3OfQaKLlh9PHLcCVQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-language/-/ckeditor__ckeditor5-language-32.0.0.tgz"
"version" "32.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-link@*":
"integrity" "sha512-ElABiBSynJvNpJ6kFSrOKfhtmVYUv7i158akP5VBnvI744hmvM3vl8D3Jjfj+/xKBFkHpJG9YN9XA0BSr+sOqA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-link/-/ckeditor__ckeditor5-link-32.0.4.tgz"
"version" "32.0.4"
dependencies:
"@types/ckeditor__ckeditor5-clipboard" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-image" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-list@*":
"integrity" "sha512-FJxpxq56CgyRhI3DAaxWuKFHQH2ZZPFyKgj/3kF3qMbS2YJ2bBhh9/IfnMi1R2Gesdm0aNgCzM/Q+xp3j4ftHQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-list/-/ckeditor__ckeditor5-list-32.0.1.tgz"
"version" "32.0.1"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-enter" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-media-embed@*":
"integrity" "sha512-Z1EAZ/s04KTh+MJHZ2Xj2ugwX8lOBmlga7BWdzO4/HkJVeNzozWjp4Kxj9bxVr3GA+EaGWS6MHqgnhtN4gqhfg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-media-embed/-/ckeditor__ckeditor5-media-embed-29.0.3.tgz"
"version" "29.0.3"
dependencies:
"@types/ckeditor__ckeditor5-clipboard" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-typing" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-undo" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-widget" "*"
"@types/ckeditor__ckeditor5-mention@*":
"integrity" "sha512-V2Xq+OrpegeKK6lWaJkpKLZNgW/nLZPhRl6p1rirKsEyVpxxjFO3qSZr3Byb7lxeRkyVLgR23hVgcvt8vfb5AQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-mention/-/ckeditor__ckeditor5-mention-31.0.0.tgz"
"version" "31.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-minimap@*":
"integrity" "sha512-XLu/QyyWVMzQseSqo/hQDWoBKzpZS83pXUwUmJcnXoK+lxaxuh8hYxY8W9qY5vrhh2IHocyrNnjMsLJLtu9FTA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-minimap/-/ckeditor__ckeditor5-minimap-33.0.0.tgz"
"version" "33.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-pagination@*":
"integrity" "sha512-2kyuvQyyi30aZbZHCh0wGpSVp9Q+v5N5AvEHAuSvj6/GOmPRdxK4YyAK/aO3FapUb3bxgvQilyIdA6JtIx1inQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-pagination/-/ckeditor__ckeditor5-pagination-27.0.3.tgz"
"version" "27.0.3"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-paragraph@*":
"integrity" "sha512-Clevh7N4G15uFZky505TIM+9qYh9Qwf1oULyh9ntsCxDUNMpqhbmRjC/9J+qcTNLLZ1xppEs75r3ejM01ZkcQg=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-paragraph/-/ckeditor__ckeditor5-paragraph-27.0.5.tgz"
"version" "27.0.5"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-paste-from-office@*":
"integrity" "sha512-/Asiwf6/cIA1R0tLIpsdiwyqOKYGQLc9va/GdTeZSAj1YG5OENeMlUK32pRth5BxS7dFlhK/xDsP5NhY/ZEUvQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-paste-from-office/-/ckeditor__ckeditor5-paste-from-office-29.0.1.tgz"
"version" "29.0.1"
dependencies:
"@types/ckeditor__ckeditor5-clipboard" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-real-time-collaboration@*":
"integrity" "sha512-u93DiYz2Q2+0ILR4srrmabWYlBx1LTcEusSbE7ylvQrcTs4qmgWlio81FyEMEtn9G5hG4kqH/WN0WfhHjWoFTQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-real-time-collaboration/-/ckeditor__ckeditor5-real-time-collaboration-32.0.0.tgz"
"version" "32.0.0"
dependencies:
"@types/ckeditor__ckeditor5-collaboration-core" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-restricted-editing@*":
"integrity" "sha512-FCOqLUbMxHBaghkXuVHl6hJy9VmimlEXPiMSHeK1jmjq3prsCvavup31Ps+zhwPlo0Bd7aS7GBdUJPGuYkYP9w=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-restricted-editing/-/ckeditor__ckeditor5-restricted-editing-32.0.0.tgz"
"version" "32.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-select-all@*":
"integrity" "sha512-Sgp9N7HHdRcE+9UZlamI3f3ZUCt1fbAYyBv3OhmS9RO9Ev/vejGcSCh3tEddzLfqBcU9HNnl39SQK0zCjeKLEA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-select-all/-/ckeditor__ckeditor5-select-all-31.0.0.tgz"
"version" "31.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-table@*":
"integrity" "sha512-a711hMOd4u/zqP/dTvEoP/bpnKLxfRasaZtiv3kepIAYub2Acz5ZOi9Gha71sWRwGK3Jeq+4q8gPuNJHYSRttQ=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-table/-/ckeditor__ckeditor5-table-33.0.0.tgz"
"version" "33.0.0"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-widget" "*"
"@types/ckeditor__ckeditor5-track-changes@*":
"integrity" "sha512-fFe+Tnni2BzrnOYD46zSkAf/StCSAaClN+lILHlWGBKo1xMod1T+hcsrnPkVrFwYSlXraDIvJIEeArrXYCKGnA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-track-changes/-/ckeditor__ckeditor5-track-changes-32.0.0.tgz"
"version" "32.0.0"
dependencies:
"@types/ckeditor__ckeditor5-collaboration-core" "*"
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-ui" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-typing@*":
"integrity" "sha512-DskFBdfcUACpxVjhdpZTCD8H3gnG/zu08kWyT6TczuBJEXTRoCfX/lZ0Dh7sd20/dxow21pLC4V9Uv/yNUquBA=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-typing/-/ckeditor__ckeditor5-typing-32.0.1.tgz"
"version" "32.0.1"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"
"@types/ckeditor__ckeditor5-engine" "*"
"@types/ckeditor__ckeditor5-utils" "*"
"@types/ckeditor__ckeditor5-ui@*":
"integrity" "sha512-0cAaEtXB+i8jnSQMVB50LqI91gJkmG8AnFsowpRPJczsnakMNYTlV+cEhPMe2RbwWxScler0jLmUNsbEORZOTw=="
"resolved" "https://registry.npmjs.org/@types/ckeditor__ckeditor5-ui/-/ckeditor__ckeditor5-ui-32.0.2.tgz"
"version" "32.0.2"
dependencies:
"@types/ckeditor__ckeditor5-core" "*"