forked from ste-xx/json-schema-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
13883 lines (12109 loc) · 570 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
"@adobe/css-tools@^4.0.1":
"integrity" "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA=="
"resolved" "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz"
"version" "4.2.0"
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@apidevtools/[email protected]":
"integrity" "sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg=="
"resolved" "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz"
"version" "9.0.6"
dependencies:
"@jsdevtools/ono" "^7.1.3"
"call-me-maybe" "^1.0.1"
"js-yaml" "^3.13.1"
"@atlaskit/analytics-gas-types@^5.0.5":
"integrity" "sha512-vhxFoPtKJ+dVF5SzE4L4aoN+KFUkYjvJLE50P4AHvl+RSILrpy9XWT+v9ZNivf67hHpFwrb/mi4e5TShkD1t9A=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-gas-types/-/analytics-gas-types-5.0.5.tgz"
"version" "5.0.5"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/analytics-namespaced-context@^5.1.0":
"integrity" "sha512-8lcODVyRxIT9sBtG1WdzqvmOZl2PrC4m9BNp81fkxxMi65VC2fBai4H58keuPkgyfKmp+Fy4w8i3EVixfWrkjw=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-namespaced-context/-/analytics-namespaced-context-5.1.4.tgz"
"version" "5.1.4"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@atlaskit/media-common" "^2.1.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/[email protected]":
"integrity" "sha512-iO6+hIp09dF4iAZQarVz3vKY1kM5Ij5CExYcK9jgc2q+OH8nv8n+BPFeJTdzGOGopmbUZn5Opj9pYQvge1Gr4Q=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-next-stable-react-context/-/analytics-next-stable-react-context-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"tslib" "^2.0.0"
"@atlaskit/analytics-next@^8.0.0":
"integrity" "sha512-cawCqnrSz/mjBGmlY1hz4mMGMdP+rkcEGQ1YHVz8LmeO+fm3OVWYDETSSMCYBrmwRVrOhCbiTQtbs38vKUHYrw=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-8.1.1.tgz"
"version" "8.1.1"
dependencies:
"@atlaskit/analytics-next-stable-react-context" "1.0.1"
"@babel/runtime" "^7.0.0"
"prop-types" "^15.5.10"
"use-memo-one" "^1.1.1"
"@atlaskit/analytics-next@^9.1.0":
"integrity" "sha512-+PkNWStlbo7utGdplIgMV+Hi+/uPLiBIpzEzwfUeXyfHc31D9seyzrWktedEHokVPoBDwb9T3cBxjOyiAdj5rg=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-9.1.3.tgz"
"version" "9.1.3"
dependencies:
"@atlaskit/analytics-next-stable-react-context" "1.0.1"
"@babel/runtime" "^7.0.0"
"prop-types" "^15.5.10"
"use-memo-one" "^1.1.1"
"@atlaskit/analytics-next@^9.2.0":
"integrity" "sha512-zTtM6xHTNNMO0dxiPrsxMko6BawEh4wN0wWSvMdQXdnusvvWNEE8rnpjn23kS4M08bYWIEstRbgoPLx6VQisug=="
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-9.2.3.tgz"
"version" "9.2.3"
dependencies:
"@atlaskit/analytics-next-stable-react-context" "1.0.1"
"@atlaskit/platform-feature-flags" "^0.2.2"
"@babel/runtime" "^7.0.0"
"prop-types" "^15.5.10"
"use-memo-one" "^1.1.1"
"@atlaskit/app-provider@^1.3.0":
"integrity" "sha512-0bHfIbXyCbYjuv0zMyHPyuCcyW5IIVCBsNbYEbEl9w5P9hChPyewNrz1VkNPRQBg18DF1zxIIsNyZOEuQjvs7Q=="
"resolved" "https://registry.npmjs.org/@atlaskit/app-provider/-/app-provider-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"@atlaskit/tokens" "^1.43.0"
"@babel/runtime" "^7.0.0"
"bind-event-listener" "^2.1.1"
"@atlaskit/atlassian-navigation@^0.12.5":
"integrity" "sha512-hLWdOsBhMCPtvEPL4nsuPJ0+5GYdlgNltbeK6VzEhAzBcRBTDZPt9xVIlDOU+w3lxXIHi3RRCssLi8PPhjGmEQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/atlassian-navigation/-/atlassian-navigation-0.12.5.tgz"
"version" "0.12.5"
dependencies:
"@atlaskit/analytics-namespaced-context" "^5.1.0"
"@atlaskit/button" "^15.1.0"
"@atlaskit/icon" "^21.1.0"
"@atlaskit/logo" "*"
"@atlaskit/popup" "^1.0.0"
"@atlaskit/theme" "^11.0.0"
"@atlaskit/tooltip" "^17.0.0"
"@atlaskit/width-detector" "^3.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"chromatism" "^2.6.0"
"lodash" "^4.17.15"
"@atlaskit/breadcrumbs@^10.1.0":
"integrity" "sha512-mZmQA+t9jQ1v9llQmdqIAAimj7LiIeOrxHroqRavwcybQDgXpGhvfAKSoh1zx29qLDzOJmlWn3Dq11C+0EG72w=="
"resolved" "https://registry.npmjs.org/@atlaskit/breadcrumbs/-/breadcrumbs-10.1.0.tgz"
"version" "10.1.0"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@atlaskit/button" "^15.1.0"
"@atlaskit/theme" "^11.0.0"
"@atlaskit/tooltip" "^17.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"@atlaskit/button@^15.1.0", "@atlaskit/button@^15.1.4":
"integrity" "sha512-QlnI8db6a69LgNWjvle2ydoIuAqBBSxRNaOKO5WOzeARJV2H5pWnBU9dKBy+R9173ggPOOF6CXiWG8Hlv6nj7w=="
"resolved" "https://registry.npmjs.org/@atlaskit/button/-/button-15.1.4.tgz"
"version" "15.1.4"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@atlaskit/spinner" "^15.0.0"
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"@atlaskit/button@^16.7.0":
"integrity" "sha512-RC1HMD9Yf40xdq0D8HVof31HKjDScmhqP3T0QPx7agLGpzLCAILFHwijv8cO5W8355E1g77lKCR+JCuulhSi7A=="
"resolved" "https://registry.npmjs.org/@atlaskit/button/-/button-16.7.6.tgz"
"version" "16.7.6"
dependencies:
"@atlaskit/analytics-next" "^9.1.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/focus-ring" "^1.3.0"
"@atlaskit/interaction-context" "^2.1.0"
"@atlaskit/spinner" "^15.5.0"
"@atlaskit/theme" "^12.5.0"
"@atlaskit/tokens" "^1.5.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/checkbox@^12.6.0":
"integrity" "sha512-m2MUWgpVfmitTuiDuKORTHotf2+xLa6o0bzjNzEZemQEviNVTDLmQwE8EGhrkfENB/uff6iZ8BTFlv6XWmITxQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/checkbox/-/checkbox-12.6.3.tgz"
"version" "12.6.3"
dependencies:
"@atlaskit/analytics-next" "^9.1.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/icon" "^21.12.0"
"@atlaskit/platform-feature-flags" "^0.2.0"
"@atlaskit/theme" "^12.5.0"
"@atlaskit/tokens" "^1.4.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/code@^13.1.1":
"integrity" "sha512-3rjhIFIT/ZnZ9bhcRaJv0sDsiFFKkyxTwGbmL/F1fru81hFCCkyKwWg0rbMgq3w8rUS/eGvK1BkeWnQZWVL6Tw=="
"resolved" "https://registry.npmjs.org/@atlaskit/code/-/code-13.1.1.tgz"
"version" "13.1.1"
dependencies:
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"memoize-one" "^5.1.0"
"react-syntax-highlighter" "^10.0.1"
"@atlaskit/codemod-utils@^4.2.0":
"integrity" "sha512-ar5vFYakSfbpKziSyi0cE1sFt48gWrwixjgo5VdN8DiL/Tf0fMiscMNvAPe4cFnagTV6scXHyUc0NPArGqL0PQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-4.2.3.tgz"
"version" "4.2.3"
dependencies:
"@babel/runtime" "^7.0.0"
"@atlaskit/css-reset@^6.0.5":
"integrity" "sha512-iG4r5D/9GVNLz3lQsNXjaQsEzGQtKQfTN0s5vUvDqXr+usEYFfqCU3Dg4guoGyDo3lNhk9yqRVBpjrG+DT8fDw=="
"resolved" "https://registry.npmjs.org/@atlaskit/css-reset/-/css-reset-6.0.5.tgz"
"version" "6.0.5"
dependencies:
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"fbjs" "^3.0.0"
"@atlaskit/css@^0.0.6":
"integrity" "sha512-LAocoHW1q/y4teVcHBQVFZSrSyLnbn70Dfz48K2Ej79JZNs8xxS/Ue0AxXHJDBW9ocTaUQviAdNelDKP7c8hiQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/css/-/css-0.0.6.tgz"
"version" "0.0.6"
dependencies:
"@atlaskit/tokens" "^1.43.0"
"@babel/runtime" "^7.0.0"
"@compiled/react" "^0.17.0"
"@atlaskit/ds-explorations@^2.2.0":
"integrity" "sha512-tgPZfRpAWUyPKB1qrpZy8ZKBlIfDVdD8QMdtXbSL4IewBLsHnfaTmkN5Wz5G7KE1YrBu20hkLwPJtqmULTdgsw=="
"resolved" "https://registry.npmjs.org/@atlaskit/ds-explorations/-/ds-explorations-2.2.3.tgz"
"version" "2.2.3"
dependencies:
"@atlaskit/tokens" "^1.8.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"tiny-invariant" "^1.2.0"
"@atlaskit/ds-lib@^2.2.0":
"integrity" "sha512-e+qn7miSyHDgMHP2zpHwDufalPKzRiaof9hd5WIskVs0BQpTR1bO2w7YkjMy5cMbYrQ+QYM64eiEv1SaDLCuIQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-2.2.3.tgz"
"version" "2.2.3"
dependencies:
"@babel/runtime" "^7.0.0"
"bind-event-listener" "^2.1.1"
"@atlaskit/empty-state@^7.1.5":
"integrity" "sha512-aFfUerEareXUYJwxXVrjiQPYNv/KLsWgIImgPlfGmdQU7ZChNf8xe8DhRqL9bSiAYcis6qLiwLxm2n62HG8kpA=="
"resolved" "https://registry.npmjs.org/@atlaskit/empty-state/-/empty-state-7.1.5.tgz"
"version" "7.1.5"
dependencies:
"@atlaskit/button" "^15.1.0"
"@atlaskit/spinner" "^15.0.0"
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/focus-ring@^1.3.0":
"integrity" "sha512-jFLFjjhZ3uOomkPdzHKiwCCFDyDkd6mnjYSy+vTQ/5naKf5xLMR7EEgQq2Aar/+filgdcDz6zzzslEMbTxaLzw=="
"resolved" "https://registry.npmjs.org/@atlaskit/focus-ring/-/focus-ring-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"@atlaskit/tokens" "^1.4.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/form@^9.1.2":
"integrity" "sha512-NxoRctEZbB3mu7EuaNOuot8Pfj1tStk1vGKOwCwMs+VJpGO5bWWY6h4fY4OCgp+EJwsrQryYT+Ynvahq1mEWBQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/form/-/form-9.1.2.tgz"
"version" "9.1.2"
dependencies:
"@atlaskit/icon" "^22.1.0"
"@atlaskit/primitives" "^5.5.0"
"@atlaskit/theme" "^12.7.0"
"@atlaskit/tokens" "^1.43.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"final-form" "^4.20.3"
"final-form-focus" "^1.1.2"
"lodash" "^4.17.21"
"react-uid" "^2.2.0"
"tiny-invariant" "^1.2.0"
"@atlaskit/icon@^21.1.0", "@atlaskit/icon@^21.12.0", "@atlaskit/icon@^21.2.0":
"integrity" "sha512-KnyyW8+q8npatIt3BPLeYCy76KlRs0Kr2of8DqAIrCduJHeLX/ff/8Jo0kn4hNF+mv5sdNx4X/44KsP6ODU7+w=="
"resolved" "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.12.4.tgz"
"version" "21.12.4"
dependencies:
"@atlaskit/theme" "^12.5.0"
"@atlaskit/tokens" "^1.5.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/icon@^22.1.0":
"integrity" "sha512-Au2xcpGAF8BPSjsOetc665co3hY8gPW+NuBB0FdMKqi4+riCi5/JE6hLuEF79cB8U24CKKt+ZgIjy8kg8DNvug=="
"resolved" "https://registry.npmjs.org/@atlaskit/icon/-/icon-22.1.1.tgz"
"version" "22.1.1"
dependencies:
"@atlaskit/tokens" "^1.38.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/in-product-testing@^0.2.0":
"integrity" "sha512-tB1GfdM6GVBirm9Ag9Qgo5bNTA1x2unc6o8iMTHDp8OkyEFCDS3l7XgmR7nrBQXv8D4BUzX6laX25vCf0ef0dw=="
"resolved" "https://registry.npmjs.org/@atlaskit/in-product-testing/-/in-product-testing-0.2.3.tgz"
"version" "0.2.3"
dependencies:
"@babel/runtime" "^7.0.0"
"@atlaskit/interaction-context@^2.1.0":
"integrity" "sha512-G50yJNocJ+wyv/XwzKge+JYOt+1T8/PGNPaKIwv1Y2CEwO1oOu4jlyOQHGjHCcsaCmuvP5PDzDXc4kO83yNcQw=="
"resolved" "https://registry.npmjs.org/@atlaskit/interaction-context/-/interaction-context-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"@babel/runtime" "^7.0.0"
"@atlaskit/logo@*", "@atlaskit/logo@^13.0.7":
"integrity" "sha512-slKfbbnUtmSnoVBCwSSNB3bVa2p2fZCSGDR7r0OBWVvJMX0BkECqu6pbC4F5XDRY0FLyw10YJAoBd7BWIPp3NA=="
"resolved" "https://registry.npmjs.org/@atlaskit/logo/-/logo-13.0.7.tgz"
"version" "13.0.7"
dependencies:
"@babel/runtime" "^7.0.0"
"react-uid" "^2.2.0"
"@atlaskit/lozenge@^10.1.0":
"integrity" "sha512-5GsO1Uiz+Xp7C0gh8ycAY9QXH6DjJjG4suyiSGFkIlm8c0wQhoqeVllTW9nTfUqpP/93jj0bPAXMHFEPLN2ldw=="
"resolved" "https://registry.npmjs.org/@atlaskit/lozenge/-/lozenge-10.1.0.tgz"
"version" "10.1.0"
dependencies:
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@compiled/react" "^0.5.0"
"@atlaskit/media-common@^2.1.0":
"integrity" "sha512-UG6PtBHlHbNroeZe+WeQltqogi6xrncmut4yqN/eH1SdaghOgNd9KcL1vi0ESdttSci+nal5AjwC2OhvMnol0Q=="
"resolved" "https://registry.npmjs.org/@atlaskit/media-common/-/media-common-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@atlaskit/analytics-gas-types" "^5.0.5"
"@babel/runtime" "^7.0.0"
"@atlaskit/menu@^0.7.0":
"integrity" "sha512-TrwOEvAT7iyFvfNPSuizJ/I8URezuHmHfhBY8sAyePv9u7GgfWDfvc/ayDtDS4XmUPe9txuUyLpOnxCoTukI5g=="
"resolved" "https://registry.npmjs.org/@atlaskit/menu/-/menu-0.7.0.tgz"
"version" "0.7.0"
dependencies:
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"@atlaskit/motion@^1.4.0":
"integrity" "sha512-Q4zFD+MSUOSqJYkKVP1PGMTp4QgWb8NZRRJcldggCML1AB6aXj7hD22W9Dx9QALi5zci8grgnZlb31VPGJ5zrA=="
"resolved" "https://registry.npmjs.org/@atlaskit/motion/-/motion-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@atlaskit/ds-lib" "^2.2.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"bind-event-listener" "^2.1.1"
"@atlaskit/platform-feature-flags@^0.2.0", "@atlaskit/platform-feature-flags@^0.2.2":
"integrity" "sha512-9wsjb1ii4t4+IWnwC/jBvWpY8/Jqng59KQH/SNEEoBifZrP4vNAH6vpv8+gPeAhFK+2Pqpxr33yC1U4+sreNew=="
"resolved" "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-0.2.2.tgz"
"version" "0.2.2"
dependencies:
"@babel/runtime" "^7.0.0"
"@atlaskit/popper@^5.0.0", "@atlaskit/popper@^5.5.0":
"integrity" "sha512-ox1VlG06FQNN4CC6TMQhd82NxFHtKMO900Pey6KWPbCuyxVFssIV/T5ysbbnz2j/69VxACOd5bpXCT3rie7Z3g=="
"resolved" "https://registry.npmjs.org/@atlaskit/popper/-/popper-5.5.3.tgz"
"version" "5.5.3"
dependencies:
"@atlaskit/in-product-testing" "^0.2.0"
"@babel/runtime" "^7.0.0"
"@popperjs/core" "^2.9.1"
"react-popper" "^2.2.3"
"@atlaskit/popup@^1.0.0", "@atlaskit/popup@^1.0.6":
"integrity" "sha512-1cxXscBN28adezEPHcm22YVHDtXcXqEcAagkVtx1wRXcA+WlyA4U2UHnc51cLWDRMdePLysuZqCbicDHTi4wlw=="
"resolved" "https://registry.npmjs.org/@atlaskit/popup/-/popup-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"@atlaskit/popper" "^5.0.0"
"@atlaskit/portal" "^4.0.0"
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"bind-event-listener" "^1.0.2"
"focus-trap" "^2.4.5"
"@atlaskit/portal@^4.0.0", "@atlaskit/portal@^4.3.0":
"integrity" "sha512-FfOLJbl3zJ8J/CqhqBW2sWMXj5zg0t6sm3wdXXejt98IhaN0Enaobg3BKV72LTOi5ZGJfPNVLbRZuaxBEYQTDw=="
"resolved" "https://registry.npmjs.org/@atlaskit/portal/-/portal-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"@atlaskit/theme" "^12.5.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/primitives@^0.12.0":
"integrity" "sha512-ZTqDLc3lP5Z8s/bXHDEEr028cC+w/VTnF+PazP9w5a8yM7+p4XKKSWiwh0EnSlLeeHX3fb+s2GKs/5YlgQf/Iw=="
"resolved" "https://registry.npmjs.org/@atlaskit/primitives/-/primitives-0.12.6.tgz"
"version" "0.12.6"
dependencies:
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/tokens" "^1.8.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@emotion/serialize" "^1.1.0"
"bind-event-listener" "^2.1.1"
"@atlaskit/primitives@^5.5.0":
"integrity" "sha512-HCv/NPrkiKBsdAWfwwgwvAq1xhgR6g0s+TrDBxcS34nju1jt+1Ebkpkpd9kVTdv/QI1/JcVDPm02Md41bLlnKw=="
"resolved" "https://registry.npmjs.org/@atlaskit/primitives/-/primitives-5.5.2.tgz"
"version" "5.5.2"
dependencies:
"@atlaskit/analytics-next" "^9.2.0"
"@atlaskit/app-provider" "^1.3.0"
"@atlaskit/css" "^0.0.6"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/interaction-context" "^2.1.0"
"@atlaskit/tokens" "^1.43.0"
"@atlaskit/visually-hidden" "^1.2.4"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@emotion/serialize" "^1.1.0"
"bind-event-listener" "^2.1.1"
"tiny-invariant" "^1.2.0"
"@atlaskit/spinner@^15.0.0", "@atlaskit/spinner@^15.0.6", "@atlaskit/spinner@^15.5.0":
"integrity" "sha512-7NVBCut1gd5ddyQwwBuWI44zGMNA9hj4by3jVqRKez57VOh4NCvZcxI7BcBehPomRQp4YnBE0Ueib2k//BvEmA=="
"resolved" "https://registry.npmjs.org/@atlaskit/spinner/-/spinner-15.5.2.tgz"
"version" "15.5.2"
dependencies:
"@atlaskit/interaction-context" "^2.1.0"
"@atlaskit/theme" "^12.5.0"
"@atlaskit/tokens" "^1.4.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/table@^0.4.6":
"integrity" "sha512-6k6z10kA6vB9284o06HfiwH1Dpg6h57m14JRrnrfLX6dBaCHWqe3xhpUyf/18fPH501Bp+MpjEmNJnUGlXKMnA=="
"resolved" "https://registry.npmjs.org/@atlaskit/table/-/table-0.4.6.tgz"
"version" "0.4.6"
dependencies:
"@atlaskit/button" "^16.7.0"
"@atlaskit/checkbox" "^12.6.0"
"@atlaskit/ds-explorations" "^2.2.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/focus-ring" "^1.3.0"
"@atlaskit/icon" "^21.12.0"
"@atlaskit/primitives" "^0.12.0"
"@atlaskit/tokens" "^1.5.0"
"@atlaskit/tooltip" "^17.8.0"
"@atlaskit/visually-hidden" "^1.2.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"tiny-invariant" "^1.2.0"
"@atlaskit/tabs@^12.1.2":
"integrity" "sha512-/PbNIwXh0YMoo8pUjLwJfZEe+vtHENhBWuQc1pK4rW7JNBAD0VYrAJ+JLiZ+ZWGFCOoCSneoJguDBH0I2FMrqA=="
"resolved" "https://registry.npmjs.org/@atlaskit/tabs/-/tabs-12.1.2.tgz"
"version" "12.1.2"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"@atlaskit/textfield@^5.0.0":
"integrity" "sha512-2co8LQB8NMjMVjR28dnP07Q1ZPHyqnQy+7TgTJoSt2S83fLUg3u19zk0/wCQ1jOOYbqPX6wSNgPku6Jn3O3Ubw=="
"resolved" "https://registry.npmjs.org/@atlaskit/textfield/-/textfield-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@atlaskit/analytics-next" "^8.0.0"
"@atlaskit/theme" "^11.0.0"
"@babel/runtime" "^7.0.0"
"@emotion/core" "^10.0.9"
"@atlaskit/theme@^11.0.0", "@atlaskit/theme@^11.0.2":
"integrity" "sha512-1lUyifZGPBFfsTBmlsL9gRVWDS1h+75qqpWJHuMN3x9TwWs9KB5lA8yLhX5/FavNcyLIDa/GIRM4DfAilhvi5w=="
"resolved" "https://registry.npmjs.org/@atlaskit/theme/-/theme-11.0.2.tgz"
"version" "11.0.2"
dependencies:
"@babel/runtime" "^7.0.0"
"exenv" "^1.2.2"
"prop-types" "^15.5.10"
"@atlaskit/theme@^12.5.0":
"integrity" "sha512-ukn8YOZJFXYx2DHvQ/AXSBqeidSa83R4H5NMerSqMqB24wGCRJ1HrK9zuKtT/ZMtRed0c7+Adk4Hn+ab3YL61w=="
"resolved" "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.5.4.tgz"
"version" "12.5.4"
dependencies:
"@atlaskit/codemod-utils" "^4.2.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/tokens" "^1.4.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/theme@^12.7.0":
"integrity" "sha512-x5hVwMpfb2AD1VF9mUOeYzFAiZE4RVFDpyfaLmJ+YsNe6RSzz547krGeiCvrRGrQbfFPMtg5Xq3G1oZC8cLQow=="
"resolved" "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.7.0.tgz"
"version" "12.7.0"
dependencies:
"@atlaskit/codemod-utils" "^4.2.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/tokens" "^1.42.0"
"@babel/runtime" "^7.0.0"
"@atlaskit/tokens@^1.38.0", "@atlaskit/tokens@^1.4.0", "@atlaskit/tokens@^1.42.0", "@atlaskit/tokens@^1.43.0", "@atlaskit/tokens@^1.5.0", "@atlaskit/tokens@^1.8.0":
"integrity" "sha512-3rRxGRnJGQBVKGqNqy+Zuad3xuDZ7uD+aFGRcU2OpLuIpiFLX95agDZ9w0HGzNiDw9eWi2f1j8Uzq06AyaRqTw=="
"resolved" "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-1.43.0.tgz"
"version" "1.43.0"
dependencies:
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/platform-feature-flags" "^0.2.0"
"@babel/runtime" "^7.0.0"
"@babel/traverse" "^7.23.2"
"@babel/types" "^7.20.0"
"bind-event-listener" "^2.1.1"
"@atlaskit/tooltip@^17.0.0", "@atlaskit/tooltip@^17.1.2", "@atlaskit/tooltip@^17.8.0":
"integrity" "sha512-sIVGvhaFiU7lJF/AP4m2SWOMk0NZEA7tEgQZ/HJ/BlmMUCRdfMsp4A6zlA/OP/DEnN7fYumnYfSrjJgw2B1ikQ=="
"resolved" "https://registry.npmjs.org/@atlaskit/tooltip/-/tooltip-17.8.2.tgz"
"version" "17.8.2"
dependencies:
"@atlaskit/analytics-next" "^9.1.0"
"@atlaskit/ds-lib" "^2.2.0"
"@atlaskit/motion" "^1.4.0"
"@atlaskit/popper" "^5.5.0"
"@atlaskit/portal" "^4.3.0"
"@atlaskit/theme" "^12.5.0"
"@atlaskit/tokens" "^1.4.0"
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"bind-event-listener" "^2.1.1"
"react-uid" "^2.2.0"
"@atlaskit/visually-hidden@^1.2.0", "@atlaskit/visually-hidden@^1.2.4":
"integrity" "sha512-khxJB6456uMS1IkwnsH0ZTYGVAnE83aoGarz388I0zPydOZdNeeEdwsRPFOn9mua88Ez+rL0OEWV22k6XRUf6A=="
"resolved" "https://registry.npmjs.org/@atlaskit/visually-hidden/-/visually-hidden-1.2.5.tgz"
"version" "1.2.5"
dependencies:
"@babel/runtime" "^7.0.0"
"@emotion/react" "^11.7.1"
"@atlaskit/width-detector@^3.0.0":
"integrity" "sha512-V9oYuRI4jaR6uab+DXnGq2FAuXqmKFIlP+IT0fJ72bc2lnYT69+TiKW0pLMcdW6VLhZdJlGPCrJEA5ld5kDvvA=="
"resolved" "https://registry.npmjs.org/@atlaskit/width-detector/-/width-detector-3.0.5.tgz"
"version" "3.0.5"
dependencies:
"@babel/runtime" "^7.0.0"
"raf-schd" "^2.1.0"
"@aw-web-design/[email protected]":
"integrity" "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA=="
"resolved" "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz"
"version" "1.4.88"
dependencies:
"default-browser-id" "3.0.0"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2":
"integrity" "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz"
"version" "7.24.2"
dependencies:
"@babel/highlight" "^7.24.2"
"picocolors" "^1.0.0"
"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.23.5":
"integrity" "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz"
"version" "7.24.4"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.10.2", "@babel/core@^7.11.5", "@babel/core@^7.11.6", "@babel/core@^7.12.0", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.0", "@babel/core@^7.13.16", "@babel/core@^7.20.2", "@babel/core@^7.21.5", "@babel/core@^7.22.5", "@babel/core@^7.4.0-0", "@babel/core@^7.7.5", "@babel/core@^7.8.0":
"integrity" "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz"
"version" "7.24.4"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.24.2"
"@babel/generator" "^7.24.4"
"@babel/helper-compilation-targets" "^7.23.6"
"@babel/helper-module-transforms" "^7.23.3"
"@babel/helpers" "^7.24.4"
"@babel/parser" "^7.24.4"
"@babel/template" "^7.24.0"
"@babel/traverse" "^7.24.1"
"@babel/types" "^7.24.0"
"convert-source-map" "^2.0.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.3"
"semver" "^6.3.1"
"@babel/core@~7.21.0":
"integrity" "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz"
"version" "7.21.8"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.21.4"
"@babel/generator" "^7.21.5"
"@babel/helper-compilation-targets" "^7.21.5"
"@babel/helper-module-transforms" "^7.21.5"
"@babel/helpers" "^7.21.5"
"@babel/parser" "^7.21.8"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.21.5"
"@babel/types" "^7.21.5"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"semver" "^6.3.0"
"@babel/generator@^7.10.2", "@babel/generator@^7.12.11", "@babel/generator@^7.21.5", "@babel/generator@^7.24.1", "@babel/generator@^7.24.4", "@babel/generator@^7.7.2":
"integrity" "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz"
"version" "7.24.4"
dependencies:
"@babel/types" "^7.24.0"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
"jsesc" "^2.5.1"
"@babel/generator@~7.21.1":
"integrity" "sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.21.9.tgz"
"version" "7.21.9"
dependencies:
"@babel/types" "^7.21.5"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5":
"integrity" "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
"integrity" "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw=="
"resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.23.6":
"integrity" "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz"
"version" "7.23.6"
dependencies:
"@babel/compat-data" "^7.23.5"
"@babel/helper-validator-option" "^7.23.5"
"browserslist" "^4.22.2"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.5":
"integrity" "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
"@babel/helper-replace-supers" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.5"
"semver" "^6.3.0"
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
"integrity" "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"regexpu-core" "^5.3.1"
"semver" "^6.3.0"
"@babel/helper-define-polyfill-provider@^0.3.3":
"integrity" "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww=="
"resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@babel/helper-compilation-targets" "^7.17.7"
"@babel/helper-plugin-utils" "^7.16.7"
"debug" "^4.1.1"
"lodash.debounce" "^4.0.8"
"resolve" "^1.14.2"
"semver" "^6.1.2"
"@babel/helper-define-polyfill-provider@^0.4.0":
"integrity" "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg=="
"resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz"
"version" "0.4.0"
dependencies:
"@babel/helper-compilation-targets" "^7.17.7"
"@babel/helper-plugin-utils" "^7.16.7"
"debug" "^4.1.1"
"lodash.debounce" "^4.0.8"
"resolve" "^1.14.2"
"semver" "^6.1.2"
"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5", "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
"integrity" "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"
"version" "7.22.20"
"@babel/helper-function-name@^7.21.0", "@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
"integrity" "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"
"version" "7.23.0"
dependencies:
"@babel/template" "^7.22.15"
"@babel/types" "^7.23.0"
"@babel/helper-hoist-variables@^7.18.6", "@babel/helper-hoist-variables@^7.22.5":
"integrity" "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-member-expression-to-functions@^7.22.5":
"integrity" "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5":
"integrity" "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz"
"version" "7.24.3"
dependencies:
"@babel/types" "^7.24.0"
"@babel/helper-module-transforms@^7.21.5", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.3":
"integrity" "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-environment-visitor" "^7.22.20"
"@babel/helper-module-imports" "^7.22.15"
"@babel/helper-simple-access" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.20"
"@babel/helper-optimise-call-expression@^7.22.5":
"integrity" "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-plugin-utils@^7.0.0":
"integrity" "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz"
"version" "7.10.4"
"@babel/helper-plugin-utils@^7.10.2", "@babel/helper-plugin-utils@^7.10.4":
"integrity" "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz"
"version" "7.10.4"
"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
"integrity" "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.22.5":
"integrity" "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g=="
"resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-wrap-function" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helper-replace-supers@^7.22.5":
"integrity" "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helper-simple-access@^7.22.5":
"integrity" "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
"integrity" "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6":
"integrity" "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-string-parser@^7.21.5", "@babel/helper-string-parser@^7.22.5", "@babel/helper-string-parser@^7.23.4":
"integrity" "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz"
"version" "7.24.1"
"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5":
"integrity" "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz"
"version" "7.22.20"
"@babel/helper-validator-option@^7.21.0", "@babel/helper-validator-option@^7.22.5", "@babel/helper-validator-option@^7.23.5":
"integrity" "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz"
"version" "7.23.5"
"@babel/helper-wrap-function@^7.22.5":
"integrity" "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw=="
"resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-function-name" "^7.22.5"
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helpers@^7.21.5", "@babel/helpers@^7.24.4":
"integrity" "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz"
"version" "7.24.4"
dependencies:
"@babel/template" "^7.24.0"
"@babel/traverse" "^7.24.1"
"@babel/types" "^7.24.0"
"@babel/highlight@^7.24.2":
"integrity" "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz"
"version" "7.24.2"
dependencies:
"@babel/helper-validator-identifier" "^7.22.20"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"picocolors" "^1.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8", "@babel/parser@^7.24.0", "@babel/parser@^7.24.1", "@babel/parser@^7.24.4":
"integrity" "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz"
"version" "7.24.4"
"@babel/parser@~7.21.2":
"integrity" "sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.21.9.tgz"
"version" "7.21.9"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
"integrity" "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
"integrity" "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-optional-chaining" "^7.22.5"
"@babel/plugin-proposal-async-generator-functions@^7.20.7":
"integrity" "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6":
"integrity" "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-class-static-block@^7.21.0":
"integrity" "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz"
"version" "7.21.0"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-proposal-dynamic-import@^7.18.6":
"integrity" "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-proposal-export-namespace-from@^7.18.9":
"integrity" "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-proposal-json-strings@^7.18.6":
"integrity" "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-proposal-logical-assignment-operators@^7.20.7":
"integrity" "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
"integrity" "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-proposal-numeric-separator@^7.18.6":
"integrity" "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-proposal-object-rest-spread@^7.20.7":
"integrity" "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/compat-data" "^7.20.5"
"@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.20.7"
"@babel/plugin-proposal-optional-catch-binding@^7.18.6":
"integrity" "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.21.0":
"integrity" "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz"
"version" "7.21.0"
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-proposal-private-methods@^7.18.6":
"integrity" "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-private-property-in-object@^7.21.0":
"integrity" "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz"
"version" "7.21.11"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
"integrity" "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz"
"version" "7.21.0-placeholder-for-preset-env.2"
"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
"integrity" "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"