-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
6430 lines (5798 loc) · 219 KB
/
yarn.lock
File metadata and controls
6430 lines (5798 loc) · 219 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@adraffy/ens-normalize@npm:^1.10.1":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10/abef75f21470ea43dd6071168e092d2d13e38067e349e76186c78838ae174a46c3e18ca50921d05bea6ec3203074147c9e271f8cb6531d1c2c0e146f3199ddcb
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-sesv2@npm:^3.839.0":
version: 3.956.0
resolution: "@aws-sdk/client-sesv2@npm:3.956.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/credential-provider-node": "npm:3.956.0"
"@aws-sdk/middleware-host-header": "npm:3.956.0"
"@aws-sdk/middleware-logger": "npm:3.956.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.956.0"
"@aws-sdk/middleware-user-agent": "npm:3.956.0"
"@aws-sdk/region-config-resolver": "npm:3.956.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/util-endpoints": "npm:3.956.0"
"@aws-sdk/util-user-agent-browser": "npm:3.956.0"
"@aws-sdk/util-user-agent-node": "npm:3.956.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/ec3d704809bc68ddf83ceddc7ae30bcee9efb5706f198e4d6494837b4b23cd45cf360386b9fd556bee517f93b1910b8ceb58c9b18f651bc30bf0f3196d3f519c
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/client-sso@npm:3.956.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/middleware-host-header": "npm:3.956.0"
"@aws-sdk/middleware-logger": "npm:3.956.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.956.0"
"@aws-sdk/middleware-user-agent": "npm:3.956.0"
"@aws-sdk/region-config-resolver": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/util-endpoints": "npm:3.956.0"
"@aws-sdk/util-user-agent-browser": "npm:3.956.0"
"@aws-sdk/util-user-agent-node": "npm:3.956.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/53ecfae28aafce4a7bba87c517fc604aea8d71b2d345385a13244df3b3b6d7f79b45f7ea7bcddc19fb48a092a3fba6dcf08819790d7cd602512f7a897de46faf
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/core@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/xml-builder": "npm:3.956.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/dc40c49b362165c40600cb01c7497a50e01abcdbf05a6d07095820cfb49d3166c7a3a1815f8837cf6bd440fe223c4d86ed94f3179de516fa7f400bcf23edcc3f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-env@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/139b62ffa0ccc0d856c78b376cee8cf9ee4e24614f98c5ec1027e4c9039e8ff76ecc1cf83186eda0ccc70d9ebbc45e61ddf85245a7eaf76cda207b29b3495ef8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-http@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-stream": "npm:^4.5.8"
tslib: "npm:^2.6.2"
checksum: 10/48c54e5a8678632a5ecc1c8ca245acac29901b3dc85ceadf8bc8823b18f548ae497cbadffef3e26d48f2ff594340184c0254674c479ceff474aa5db417f5f4d5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/credential-provider-env": "npm:3.956.0"
"@aws-sdk/credential-provider-http": "npm:3.956.0"
"@aws-sdk/credential-provider-login": "npm:3.956.0"
"@aws-sdk/credential-provider-process": "npm:3.956.0"
"@aws-sdk/credential-provider-sso": "npm:3.956.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.956.0"
"@aws-sdk/nested-clients": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/ffc4b77e62d1382589409d3d0c50cc873fca2706d9e881d1a94ebe27cc0e82eb8d82d667f18544b3bf1f2ce03c76c0a65ebd27e50f40cf12937d2d5584f78d1a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-login@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/nested-clients": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/38b5594dfd756b92b33f503ab4458037353ef67b504a63fb2483e92663891fa25089bb90f38e5f3f521e98abfee520cb10fccca96a3a88873ae35099328fd8dd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-node@npm:3.956.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.956.0"
"@aws-sdk/credential-provider-http": "npm:3.956.0"
"@aws-sdk/credential-provider-ini": "npm:3.956.0"
"@aws-sdk/credential-provider-process": "npm:3.956.0"
"@aws-sdk/credential-provider-sso": "npm:3.956.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/c0bb03daa11ca0b0aff54f543f9038c1ed8dba39157f927fcf571eb6954cec3026a87bfef316e0ed88c95da6e166a369e4d960ee5d36699b792e95bc7c475acb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-process@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/6749c4fa76b2e04d2f8cae27ca6c9264f734d6a9d39d71a5efa0f8e2a1d970d97946b612285922ad8bd4d248e1fae93e329818907e07465a846d7146282b2ee6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.956.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.956.0"
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/token-providers": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/87ba9aca294075240898794edd59bb03aa550ed6fa6345310a76dfabacbe95e3d7dd8ed4d2c71413b4acc3c136dc421f411b2abecb7fe0f07a0ce66fc42ebedf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/nested-clients": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/181fcc133cae3a594141c71df31a1e8526129cb01af5a86d30c2005310452d7f44e8f8fbb8fd4772c31e823e6cd0c0aecb0ae3863b1aae88f3594e36c830a63b
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/middleware-host-header@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/f000642e3bb37e36a6fbc7405ccafa2bae2bd275158a252582ffaa11d4a1bcb77f8e773d7114f7c378d80a098ffe4da21f6962541f14a81bedc1866152a41a49
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/middleware-logger@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/b49942d800c852414d87c75239ab17dd8da04c4036e6c0d37db88b037d8190191281620b04a52cb56341763241907fd0ab2d6b0bb278ae37e940dfeb7df77a42
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/bfa51a554e1b6fa866f3ef66ad4d55a498929df37da3668872c3d30655dead7dde60eb0fd18c005b174d500b1b400fc5a9e3985f87009e73345a563184514574
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/util-arn-parser": "npm:3.953.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-stream": "npm:^4.5.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/85322ef86db238c2b0f086894b2ceb1785e979906f1d01121c0d2e9291773af15bbfb9685f5373b7ae5df8395c2b80768b52676db49bc480bfa22f02671a1d5b
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/util-endpoints": "npm:3.956.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/58f607837d4a5fac02f568df0841564f6b30af1be9b3732d654badf610199dfefb30ab7dfc587542750a48fe2c6a5488ff14197c376abaa7287db0e4d022b384
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/nested-clients@npm:3.956.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/middleware-host-header": "npm:3.956.0"
"@aws-sdk/middleware-logger": "npm:3.956.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.956.0"
"@aws-sdk/middleware-user-agent": "npm:3.956.0"
"@aws-sdk/region-config-resolver": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@aws-sdk/util-endpoints": "npm:3.956.0"
"@aws-sdk/util-user-agent-browser": "npm:3.956.0"
"@aws-sdk/util-user-agent-node": "npm:3.956.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/7792421748ad4bf222501d7e7fab306818ee4bc62556e0fb1f4ee2c8c02a00d7782169dc7b8b361de1389892a6064de8ba790ee9b4bde7c48be42f16e1476de4
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/region-config-resolver@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/c3088beff3c6146f7f9978d38da5ed8331ab929b5d0e1673839430383e27b90a4ed6fbac6463db181da57e6d554f7caeb9874ecefc7d5cb532980d685d360da1
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.956.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/2fdcab6cd3cb6a98b7cf1251b4de15cf62638aa6e1e4e6b5844fd66a75f8b4859889d8811594c991dc59d27e7468d2e9c9e9e4730da80554581e3eab63b35dca
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/token-providers@npm:3.956.0"
dependencies:
"@aws-sdk/core": "npm:3.956.0"
"@aws-sdk/nested-clients": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/14f46f0da32983fc691deaa1720f58ad5f30dd447d91c6d3b7e55409ac2d9e7c2af06c9c692c6526a0395126eb94b8661ecf31d967643a45a4edfb93187bf180
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.956.0, @aws-sdk/types@npm:^3.222.0":
version: 3.956.0
resolution: "@aws-sdk/types@npm:3.956.0"
dependencies:
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10/c8eee2d2b8aa98dee467e83ad438ffbeb128a49f1e38f0fcfa212a5af7d4c4d5009549220c6e3339e20b7b9f2e60ac8eab35cfd2912c2fdbf0117162bff32f09
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.953.0":
version: 3.953.0
resolution: "@aws-sdk/util-arn-parser@npm:3.953.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/e6b446b5862381bb3c06be86ca4b427c63fb105940267b33c5ea994ce91b4659c5ac7866ba145f0d14130d329eccf76278a9a81c3e5201a8340cb9c83c4adedd
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/util-endpoints@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-endpoints": "npm:^3.2.7"
tslib: "npm:^2.6.2"
checksum: 10/7a3758399efcd66cf9d5867f13e1f4bd744d330f5fdcfcab72eba778e1cdd7a826b146c2bebdf8b6f2b580af2e876e311248c6a8b5d2f14f35d7e9a5ed02829f
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.953.0
resolution: "@aws-sdk/util-locate-window@npm:3.953.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/21f6fd3b83d31050355c0bd1b35c47c5f14c5a7cc57ddb5b14c94dba71ea76160af4a497a86e8462b168a542f87f1da01ec109e8d4f4dcbc47f0ea6629b493db
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.956.0"
dependencies:
"@aws-sdk/types": "npm:3.956.0"
"@smithy/types": "npm:^4.11.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/323ff03ffe13bcc8040b446bfcfe2c3003d798d4e9ce2c00bfef37a62b2b03428ff78e991c4fd03a4f3c18a01cf8e6e0381d5a45a890fa65bc98e04edd9f2dc7
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.956.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.956.0"
"@aws-sdk/types": "npm:3.956.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/1d3500147713259c558be64d1d932111281e30510687ae907170f11e6ece281a26e7bbdb100fe6aa8ee8b86ed5916f36043fb7b72e9eec9d234911c2afb89a36
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.956.0":
version: 3.956.0
resolution: "@aws-sdk/xml-builder@npm:3.956.0"
dependencies:
"@smithy/types": "npm:^4.11.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10/a99b076552bc65f570a2c518a7ee4a8d286108dc69acaa6db4ec02b37e74bf45ac40347045c12023a2e56400c8bd5ee37e8a398493135506d89a9f03f6b2c5ce
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.2
resolution: "@aws/lambda-invoke-store@npm:0.2.2"
checksum: 10/18cd0cec90d9d865c9089218ef2220b0a7302a860c9a3f808b101386f569abc5ee11eb98a36947bed280a63308dd5df23c39e7b07fe9ac4f4ffcd0c4dce537c4
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^1.0.1":
version: 1.0.2
resolution: "@bcoe/v8-coverage@npm:1.0.2"
checksum: 10/46600b2dde460269b07a8e4f12b72e418eae1337b85c979f43af3336c9a1c65b04e42508ab6b245f1e0e3c64328e1c38d8cd733e4a7cebc4fbf9cf65c6e59937
languageName: node
linkType: hard
"@cypress/request-promise@npm:^5.0.0":
version: 5.0.0
resolution: "@cypress/request-promise@npm:5.0.0"
dependencies:
bluebird: "npm:^3.5.0"
request-promise-core: "npm:1.1.3"
stealthy-require: "npm:^1.1.1"
tough-cookie: "npm:^4.1.3"
peerDependencies:
"@cypress/request": ^3.0.0
checksum: 10/9d052758be92ad94081ff3f600f9b6d1128e140f35a0f39d87941ada3dae84e7a4606ed659d8b8ebadb9a84413c25db8ac0e42b77392a877e181fc7299a95478
languageName: node
linkType: hard
"@cypress/request@npm:^3.0.8":
version: 3.0.9
resolution: "@cypress/request@npm:3.0.9"
dependencies:
aws-sign2: "npm:~0.7.0"
aws4: "npm:^1.8.0"
caseless: "npm:~0.12.0"
combined-stream: "npm:~1.0.6"
extend: "npm:~3.0.2"
forever-agent: "npm:~0.6.1"
form-data: "npm:~4.0.4"
http-signature: "npm:~1.4.0"
is-typedarray: "npm:~1.0.0"
isstream: "npm:~0.1.2"
json-stringify-safe: "npm:~5.0.1"
mime-types: "npm:~2.1.19"
performance-now: "npm:^2.1.0"
qs: "npm:6.14.0"
safe-buffer: "npm:^5.1.2"
tough-cookie: "npm:^5.0.0"
tunnel-agent: "npm:^0.6.0"
uuid: "npm:^8.3.2"
checksum: 10/735bd15b9bfb2ac950f4ca715c4ea944c3686fab5f48649c6f6ce62e5d2186df51a96c22fb6e4839dc5d16033ceeece03ca9fa621c9232fb96ad567846a4158c
languageName: node
linkType: hard
"@esbuild-kit/core-utils@npm:^3.3.2":
version: 3.3.2
resolution: "@esbuild-kit/core-utils@npm:3.3.2"
dependencies:
esbuild: "npm:~0.18.20"
source-map-support: "npm:^0.5.21"
checksum: 10/012387ed407c57b9735bf2cc5bc3b9b35888f69376bb7d749e9e16415248deeb66b7d93444458239ba15872738a4b5d4e8466b7260e721c6de477dd5e87ef945
languageName: node
linkType: hard
"@esbuild-kit/esm-loader@npm:^2.5.5":
version: 2.6.5
resolution: "@esbuild-kit/esm-loader@npm:2.6.5"
dependencies:
"@esbuild-kit/core-utils": "npm:^3.3.2"
get-tsconfig: "npm:^4.7.0"
checksum: 10/e7dac48017fbb7e13f0519ff25f700c38c78ccc8ae2d7d117216c6658d8d21499d01b4381287acdf2f7dde36d812b9a3e57a3c4b38cec4717173cd65c13037e0
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/aix-ppc64@npm:0.19.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/aix-ppc64@npm:0.27.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm64@npm:0.19.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm64@npm:0.27.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm@npm:0.19.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm@npm:0.27.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-x64@npm:0.19.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-x64@npm:0.27.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-arm64@npm:0.19.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-arm64@npm:0.27.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-x64@npm:0.19.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-x64@npm:0.27.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-arm64@npm:0.19.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-arm64@npm:0.27.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-x64@npm:0.19.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-x64@npm:0.27.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm64@npm:0.19.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm64@npm:0.27.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm@npm:0.19.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm@npm:0.27.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ia32@npm:0.19.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ia32@npm:0.27.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-loong64@npm:0.19.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-loong64@npm:0.27.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-mips64el@npm:0.19.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-mips64el@npm:0.27.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ppc64@npm:0.19.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ppc64@npm:0.27.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-riscv64@npm:0.19.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-riscv64@npm:0.27.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-s390x@npm:0.19.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-s390x@npm:0.27.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-x64@npm:0.19.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-x64@npm:0.27.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-arm64@npm:0.27.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/netbsd-x64@npm:0.19.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-x64@npm:0.27.2"