-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6676 lines (5787 loc) · 276 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
"@0no-co/graphql.web@^1.0.5":
"integrity" "sha512-E3Qku4mTzdrlwVWGPxklDnME5ANrEGetvYw4i2GCRlppWXXE4QD66j7pwb8HelZwS6LnqEChhrSOGCXpbiu6MQ=="
"resolved" "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.0.7.tgz"
"version" "1.0.7"
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.6":
"integrity" "sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/highlight" "^7.24.6"
"picocolors" "^1.0.0"
"@babel/code-frame@~7.10.4":
"integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/code-frame@7.10.4":
"integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.6":
"integrity" "sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.6.tgz"
"version" "7.24.6"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.13.16", "@babel/core@^7.20.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0":
"integrity" "sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.24.6"
"@babel/generator" "^7.24.6"
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helpers" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/traverse" "^7.24.6"
"@babel/types" "^7.24.6"
"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/generator@^7.20.0", "@babel/generator@^7.20.5", "@babel/generator@^7.24.6":
"integrity" "sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.24.6":
"integrity" "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.6":
"integrity" "sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/compat-data" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"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.24.6":
"integrity" "sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-member-expression-to-functions" "^7.24.6"
"@babel/helper-optimise-call-expression" "^7.24.6"
"@babel/helper-replace-supers" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"semver" "^6.3.1"
"@babel/helper-create-regexp-features-plugin@^7.24.6":
"integrity" "sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"regexpu-core" "^5.3.1"
"semver" "^6.3.1"
"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2":
"integrity" "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz"
"version" "0.6.2"
dependencies:
"@babel/helper-compilation-targets" "^7.22.6"
"@babel/helper-plugin-utils" "^7.22.5"
"debug" "^4.1.1"
"lodash.debounce" "^4.0.8"
"resolve" "^1.14.2"
"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.24.6":
"integrity" "sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-function-name@^7.24.6":
"integrity" "sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/helper-hoist-variables@^7.24.6":
"integrity" "sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-member-expression-to-functions@^7.24.6":
"integrity" "sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-imports@^7.24.6":
"integrity" "sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-transforms@^7.24.6":
"integrity" "sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-simple-access" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"@babel/helper-validator-identifier" "^7.24.6"
"@babel/helper-optimise-call-expression@^7.24.6":
"integrity" "sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.6", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
"integrity" "sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.24.6":
"integrity" "sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg=="
"resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-wrap-function" "^7.24.6"
"@babel/helper-replace-supers@^7.24.6":
"integrity" "sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-member-expression-to-functions" "^7.24.6"
"@babel/helper-optimise-call-expression" "^7.24.6"
"@babel/helper-simple-access@^7.24.6":
"integrity" "sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.24.6":
"integrity" "sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-split-export-declaration@^7.24.6":
"integrity" "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-string-parser@^7.24.6":
"integrity" "sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-validator-identifier@^7.24.6":
"integrity" "sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-validator-option@^7.24.6":
"integrity" "sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-wrap-function@^7.24.6":
"integrity" "sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-function-name" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/helpers@^7.24.6":
"integrity" "sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.24.6":
"integrity" "sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-validator-identifier" "^7.24.6"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"picocolors" "^1.0.0"
"@babel/parser@^7.13.16", "@babel/parser@^7.20.0", "@babel/parser@^7.24.6":
"integrity" "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz"
"version" "7.24.6"
"@babel/plugin-proposal-async-generator-functions@^7.0.0":
"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.0":
"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-decorators@^7.12.9":
"integrity" "sha512-8DjR0/DzlBhz2SVi9a19/N2U5+C3y3rseXuyoKL9SP8vnbewscj1eHZtL6kpEn4UCuUmqEo0mvqyDYRFoN2gpA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-decorators" "^7.24.6"
"@babel/plugin-proposal-export-default-from@^7.0.0":
"integrity" "sha512-qPPDbYs9j5IArMFqYi85QxatHURSzRyskKpIbjrVoVglDuGdhu1s7UTCmXvP/qR2aHa3EdJ8X3iZvQAHjmdHUw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-export-default-from" "^7.24.6"
"@babel/plugin-proposal-logical-assignment-operators@^7.18.0":
"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.0":
"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.0.0":
"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.0":
"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.0.0":
"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.20.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-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-decorators@^7.24.6":
"integrity" "sha512-gInH8LEqBp+wkwTVihCd/qf+4s28g81FZyvlIbAurHk9eSiItEKG7E0uNK2UdpgsD79aJVAW3R3c85h0YJ0jsw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-dynamic-import@^7.8.0":
"integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.24.6":
"integrity" "sha512-Nzl7kZ4tjOM2LJpejBMPwZs7OJfc26++2HsMQuSrw6gxpqXGtZZ3Rj4Zt4Qm7vulMZL2gHIGGc2stnlQnHQCqA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
"integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.24.6":
"integrity" "sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-jsx@^7.24.6":
"integrity" "sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.10.4":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-private-property-in-object@^7.14.5":
"integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.24.6":
"integrity" "sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-arrow-functions@^7.0.0":
"integrity" "sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-async-to-generator@^7.20.0":
"integrity" "sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-remap-async-to-generator" "^7.24.6"
"@babel/plugin-transform-block-scoping@^7.0.0":
"integrity" "sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-classes@^7.0.0":
"integrity" "sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-replace-supers" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"globals" "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.0.0":
"integrity" "sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/plugin-transform-destructuring@^7.20.0":
"integrity" "sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-export-namespace-from@^7.22.11":
"integrity" "sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.24.6":
"integrity" "sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-flow" "^7.24.6"
"@babel/plugin-transform-function-name@^7.0.0":
"integrity" "sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-literals@^7.0.0":
"integrity" "sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.24.6":
"integrity" "sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-simple-access" "^7.24.6"
"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0":
"integrity" "sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-object-rest-spread@^7.12.13":
"integrity" "sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.24.6"
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15", "@babel/plugin-transform-parameters@^7.24.6":
"integrity" "sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-private-methods@^7.22.5":
"integrity" "sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-private-property-in-object@^7.22.11":
"integrity" "sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.24.6":
"integrity" "sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-react-jsx-development@^7.24.6":
"integrity" "sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/plugin-transform-react-jsx" "^7.24.6"
"@babel/plugin-transform-react-jsx-self@^7.0.0":
"integrity" "sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-react-jsx-source@^7.0.0":
"integrity" "sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.24.6":
"integrity" "sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-jsx" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/plugin-transform-react-pure-annotations@^7.24.6":
"integrity" "sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-runtime@^7.0.0":
"integrity" "sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"babel-plugin-polyfill-corejs2" "^0.4.10"
"babel-plugin-polyfill-corejs3" "^0.10.1"
"babel-plugin-polyfill-regenerator" "^0.6.1"
"semver" "^6.3.1"
"@babel/plugin-transform-shorthand-properties@^7.0.0":
"integrity" "sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-spread@^7.0.0":
"integrity" "sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.6"
"@babel/plugin-transform-sticky-regex@^7.0.0":
"integrity" "sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-typescript@^7.24.6", "@babel/plugin-transform-typescript@^7.5.0":
"integrity" "sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-typescript" "^7.24.6"
"@babel/plugin-transform-unicode-regex@^7.0.0":
"integrity" "sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/preset-flow@^7.13.13":
"integrity" "sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g=="
"resolved" "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"@babel/plugin-transform-flow-strip-types" "^7.24.6"
"@babel/preset-react@^7.22.15":
"integrity" "sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw=="
"resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"@babel/plugin-transform-react-display-name" "^7.24.6"
"@babel/plugin-transform-react-jsx" "^7.24.6"
"@babel/plugin-transform-react-jsx-development" "^7.24.6"
"@babel/plugin-transform-react-pure-annotations" "^7.24.6"
"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.23.0":
"integrity" "sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w=="
"resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"@babel/plugin-syntax-jsx" "^7.24.6"
"@babel/plugin-transform-modules-commonjs" "^7.24.6"
"@babel/plugin-transform-typescript" "^7.24.6"
"@babel/register@^7.13.16":
"integrity" "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w=="
"resolved" "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"clone-deep" "^4.0.1"
"find-cache-dir" "^2.0.0"
"make-dir" "^2.1.0"
"pirates" "^4.0.6"
"source-map-support" "^0.5.16"
"@babel/regjsgen@^0.8.0":
"integrity" "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="
"resolved" "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
"version" "0.8.0"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.20.0":
"integrity" "sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"regenerator-runtime" "^0.14.0"
"@babel/template@^7.0.0", "@babel/template@^7.24.6":
"integrity" "sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/traverse@^7.20.0", "@babel/traverse@^7.24.6":
"integrity" "sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/generator" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-hoist-variables" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
"debug" "^4.3.1"
"globals" "^11.1.0"
"@babel/types@^7.20.0", "@babel/types@^7.24.6":
"integrity" "sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-string-parser" "^7.24.6"
"@babel/helper-validator-identifier" "^7.24.6"
"to-fast-properties" "^2.0.0"
"@expo/bunyan@^4.0.0":
"integrity" "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="
"resolved" "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"uuid" "^8.0.0"
optionalDependencies:
"mv" "~2"
"safe-json-stringify" "~1"
"@expo/cli@0.18.14":
"integrity" "sha512-ke2IVs3MfIMe2NjXY11Ky9+r0+eav6NUa+cy61wpZNPe5QkwIJ56SdJ4wIMMKFPFhgLsy1vfaqhOcZo96U4wCg=="
"resolved" "https://registry.npmjs.org/@expo/cli/-/cli-0.18.14.tgz"
"version" "0.18.14"
dependencies:
"@babel/runtime" "^7.20.0"
"@expo/code-signing-certificates" "0.0.5"
"@expo/config" "~9.0.0-beta.0"
"@expo/config-plugins" "~8.0.0-beta.0"
"@expo/devcert" "^1.0.0"
"@expo/env" "~0.3.0"
"@expo/image-utils" "^0.5.0"
"@expo/json-file" "^8.3.0"
"@expo/metro-config" "~0.18.0"
"@expo/osascript" "^2.0.31"
"@expo/package-manager" "^1.5.0"
"@expo/plist" "^0.1.0"
"@expo/prebuild-config" "7.0.3"
"@expo/rudder-sdk-node" "1.1.1"
"@expo/spawn-async" "^1.7.2"
"@expo/xcpretty" "^4.3.0"
"@react-native/dev-middleware" "~0.74.75"
"@urql/core" "2.3.6"
"@urql/exchange-retry" "0.3.0"
"accepts" "^1.3.8"
"arg" "5.0.2"
"better-opn" "~3.0.2"
"bplist-parser" "^0.3.1"
"cacache" "^18.0.2"
"chalk" "^4.0.0"
"ci-info" "^3.3.0"
"connect" "^3.7.0"
"debug" "^4.3.4"
"env-editor" "^0.4.1"
"fast-glob" "^3.3.2"
"find-yarn-workspace-root" "~2.0.0"
"form-data" "^3.0.1"
"freeport-async" "2.0.0"
"fs-extra" "~8.1.0"
"getenv" "^1.0.0"
"glob" "^7.1.7"
"graphql" "15.8.0"
"graphql-tag" "^2.10.1"
"https-proxy-agent" "^5.0.1"
"internal-ip" "4.3.0"
"is-docker" "^2.0.0"
"is-wsl" "^2.1.1"
"js-yaml" "^3.13.1"
"json-schema-deref-sync" "^0.13.0"
"lodash.debounce" "^4.0.8"
"md5hex" "^1.0.0"
"minimatch" "^3.0.4"
"node-fetch" "^2.6.7"
"node-forge" "^1.3.1"
"npm-package-arg" "^7.0.0"
"open" "^8.3.0"
"ora" "3.4.0"
"picomatch" "^3.0.1"
"pretty-bytes" "5.6.0"
"progress" "2.0.3"
"prompts" "^2.3.2"
"qrcode-terminal" "0.11.0"
"require-from-string" "^2.0.2"
"requireg" "^0.2.2"
"resolve" "^1.22.2"
"resolve-from" "^5.0.0"
"resolve.exports" "^2.0.2"
"semver" "^7.6.0"
"send" "^0.18.0"
"slugify" "^1.3.4"
"source-map-support" "~0.5.21"
"stacktrace-parser" "^0.1.10"
"structured-headers" "^0.4.1"
"tar" "^6.0.5"
"temp-dir" "^2.0.0"
"tempy" "^0.7.1"
"terminal-link" "^2.1.1"
"text-table" "^0.2.0"
"url-join" "4.0.0"
"wrap-ansi" "^7.0.0"
"ws" "^8.12.1"
"@expo/code-signing-certificates@0.0.5":
"integrity" "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw=="
"resolved" "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz"
"version" "0.0.5"
dependencies:
"node-forge" "^1.2.1"
"nullthrows" "^1.1.1"
"@expo/config-plugins@~8.0.0", "@expo/config-plugins@~8.0.0-beta.0", "@expo/config-plugins@8.0.4":
"integrity" "sha512-Hi+xuyNWE2LT4LVbGttHJgl9brnsdWAhEB42gWKb5+8ae86Nr/KwUBQJsJppirBYTeLjj5ZlY0glYnAkDa2jqw=="
"resolved" "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.4.tgz"
"version" "8.0.4"
dependencies:
"@expo/config-types" "^51.0.0-unreleased"
"@expo/json-file" "~8.3.0"
"@expo/plist" "^0.1.0"
"@expo/sdk-runtime-versions" "^1.0.0"
"chalk" "^4.1.2"
"debug" "^4.3.1"
"find-up" "~5.0.0"
"getenv" "^1.0.0"
"glob" "7.1.6"
"resolve-from" "^5.0.0"
"semver" "^7.5.4"
"slash" "^3.0.0"
"slugify" "^1.6.6"
"xcode" "^3.0.1"
"xml2js" "0.6.0"
"@expo/config-types@^51.0.0-unreleased":
"integrity" "sha512-acn03/u8mQvBhdTQtA7CNhevMltUhbSrpI01FYBJwpVntufkU++ncQujWKlgY/OwIajcfygk1AY4xcNZ5ImkRA=="
"resolved" "https://registry.npmjs.org/@expo/config-types/-/config-types-51.0.0.tgz"
"version" "51.0.0"
"@expo/config@~9.0.0", "@expo/config@~9.0.0-beta.0":
"integrity" "sha512-BKQ4/qBf3OLT8hHp5kjObk2vxwoRQ1yYQBbG/OM9Jdz32yYtrU8opTbKRAxfZEWH5i3ZHdLrPdC1rO0I6WxtTw=="
"resolved" "https://registry.npmjs.org/@expo/config/-/config-9.0.2.tgz"
"version" "9.0.2"
dependencies:
"@babel/code-frame" "~7.10.4"
"@expo/config-plugins" "~8.0.0"
"@expo/config-types" "^51.0.0-unreleased"
"@expo/json-file" "^8.3.0"
"getenv" "^1.0.0"
"glob" "7.1.6"
"require-from-string" "^2.0.2"
"resolve-from" "^5.0.0"
"semver" "^7.6.0"
"slugify" "^1.3.4"
"sucrase" "3.34.0"
"@expo/config@9.0.1":
"integrity" "sha512-0tjaXBstTbXmD4z+UMFBkh2SZFwilizSQhW6DlaTMnPG5ezuw93zSFEWAuEC3YzkpVtNQTmYzxAYjxwh6seOGg=="
"resolved" "https://registry.npmjs.org/@expo/config/-/config-9.0.1.tgz"
"version" "9.0.1"
dependencies:
"@babel/code-frame" "~7.10.4"
"@expo/config-plugins" "~8.0.0-beta.0"
"@expo/config-types" "^51.0.0-unreleased"
"@expo/json-file" "^8.3.0"
"getenv" "^1.0.0"
"glob" "7.1.6"
"require-from-string" "^2.0.2"
"resolve-from" "^5.0.0"
"semver" "^7.6.0"
"slugify" "^1.3.4"
"sucrase" "3.34.0"
"@expo/devcert@^1.0.0":
"integrity" "sha512-FyWghLu7rUaZEZSTLt/XNRukm0c9GFfwP0iFaswoDWpV6alvVg+zRAfCLdIVQEz1SVcQ3zo1hMZFDrnKGvkCuQ=="
"resolved" "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"application-config-path" "^0.1.0"
"command-exists" "^1.2.4"
"debug" "^3.1.0"
"eol" "^0.9.1"
"get-port" "^3.2.0"
"glob" "^7.1.2"
"lodash" "^4.17.21"
"mkdirp" "^0.5.1"
"password-prompt" "^1.0.4"
"rimraf" "^2.6.2"
"sudo-prompt" "^8.2.0"
"tmp" "^0.0.33"
"tslib" "^2.4.0"
"@expo/env@~0.3.0":
"integrity" "sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q=="
"resolved" "https://registry.npmjs.org/@expo/env/-/env-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"chalk" "^4.0.0"
"debug" "^4.3.4"
"dotenv" "~16.4.5"
"dotenv-expand" "~11.0.6"
"getenv" "^1.0.0"
"@expo/image-utils@^0.5.0":
"integrity" "sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A=="
"resolved" "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.5.1.tgz"
"version" "0.5.1"
dependencies:
"@expo/spawn-async" "^1.7.2"
"chalk" "^4.0.0"
"fs-extra" "9.0.0"
"getenv" "^1.0.0"
"jimp-compact" "0.16.1"
"node-fetch" "^2.6.0"
"parse-png" "^2.1.0"
"resolve-from" "^5.0.0"
"semver" "^7.6.0"
"tempy" "0.3.0"
"@expo/json-file@^8.3.0", "@expo/json-file@~8.3.0":
"integrity" "sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A=="
"resolved" "https://registry.npmjs.org/@expo/json-file/-/json-file-8.3.3.tgz"
"version" "8.3.3"
dependencies:
"@babel/code-frame" "~7.10.4"
"json5" "^2.2.2"