-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
2436 lines (2217 loc) · 87.6 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@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: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@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: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@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: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
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: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
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: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
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: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @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: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/client-dynamodb@npm:3.731.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/credential-provider-node": "npm:3.731.1"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.731.0"
"@aws-sdk/middleware-host-header": "npm:3.731.0"
"@aws-sdk/middleware-logger": "npm:3.731.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.731.0"
"@aws-sdk/middleware-user-agent": "npm:3.731.0"
"@aws-sdk/region-config-resolver": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-endpoints": "npm:3.731.0"
"@aws-sdk/util-user-agent-browser": "npm:3.731.0"
"@aws-sdk/util-user-agent-node": "npm:3.731.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
"@smithy/hash-node": "npm:^4.0.0"
"@smithy/invalid-dependency": "npm:^4.0.0"
"@smithy/middleware-content-length": "npm:^4.0.0"
"@smithy/middleware-endpoint": "npm:^4.0.0"
"@smithy/middleware-retry": "npm:^4.0.0"
"@smithy/middleware-serde": "npm:^4.0.0"
"@smithy/middleware-stack": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/url-parser": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.0"
"@smithy/util-defaults-mode-node": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/da0fb09f70d9814dbda0b9bfb2613a20922be458b4f626be4e29644009d2441c1500d7f58506909f3c0f85bb73dcb630c3322ad30cc314a92e7786f2a158e055
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.732.0":
version: 3.732.0
resolution: "@aws-sdk/client-s3@npm:3.732.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/credential-provider-node": "npm:3.731.1"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.731.0"
"@aws-sdk/middleware-expect-continue": "npm:3.731.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.732.0"
"@aws-sdk/middleware-host-header": "npm:3.731.0"
"@aws-sdk/middleware-location-constraint": "npm:3.731.0"
"@aws-sdk/middleware-logger": "npm:3.731.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.731.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.731.0"
"@aws-sdk/middleware-ssec": "npm:3.731.0"
"@aws-sdk/middleware-user-agent": "npm:3.731.0"
"@aws-sdk/region-config-resolver": "npm:3.731.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-endpoints": "npm:3.731.0"
"@aws-sdk/util-user-agent-browser": "npm:3.731.0"
"@aws-sdk/util-user-agent-node": "npm:3.731.0"
"@aws-sdk/xml-builder": "npm:3.723.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.0.0"
"@smithy/eventstream-serde-node": "npm:^4.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
"@smithy/hash-blob-browser": "npm:^4.0.0"
"@smithy/hash-node": "npm:^4.0.0"
"@smithy/hash-stream-node": "npm:^4.0.0"
"@smithy/invalid-dependency": "npm:^4.0.0"
"@smithy/md5-js": "npm:^4.0.0"
"@smithy/middleware-content-length": "npm:^4.0.0"
"@smithy/middleware-endpoint": "npm:^4.0.0"
"@smithy/middleware-retry": "npm:^4.0.0"
"@smithy/middleware-serde": "npm:^4.0.0"
"@smithy/middleware-stack": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/url-parser": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.0"
"@smithy/util-defaults-mode-node": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-stream": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3a0cfb2dc28736a631ea8f967e7334593a83243ab3a811934101d4ee380088e74d360d8b618fd08c329e6fc23b5b1c0f0245ea8440938055868ab5b0ac53f318
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/client-sso@npm:3.731.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/middleware-host-header": "npm:3.731.0"
"@aws-sdk/middleware-logger": "npm:3.731.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.731.0"
"@aws-sdk/middleware-user-agent": "npm:3.731.0"
"@aws-sdk/region-config-resolver": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-endpoints": "npm:3.731.0"
"@aws-sdk/util-user-agent-browser": "npm:3.731.0"
"@aws-sdk/util-user-agent-node": "npm:3.731.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
"@smithy/hash-node": "npm:^4.0.0"
"@smithy/invalid-dependency": "npm:^4.0.0"
"@smithy/middleware-content-length": "npm:^4.0.0"
"@smithy/middleware-endpoint": "npm:^4.0.0"
"@smithy/middleware-retry": "npm:^4.0.0"
"@smithy/middleware-serde": "npm:^4.0.0"
"@smithy/middleware-stack": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/url-parser": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.0"
"@smithy/util-defaults-mode-node": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5dbc8db459a70024e255e2b09e79f9fbdefc7fe5754b33c5dadd4dce83d634649f241e5e7a7e9276a07f18e9fe22fe7ef31b79a4f879937e48856d4760a7170c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/core@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/signature-v4": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/66bf4881cb220c99b1ae94852c52c1461ecc1997d44d60a7a07b4e44af5e1a786aa68424dcd590a95a308a08ce0ddfdcb1823fb1589d81b87b2609410bd22a02
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/credential-provider-env@npm:3.731.0"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/80ea6cc7d7d86c818a506d9a2725590fce71469283fec3e150b2e7d7c82938a96ce3d4eb90cb3dfa0a51134c66f0bd3ce819c8ddfa381a6d5ff612b605e9c872
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/credential-provider-http@npm:3.731.0"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
"@smithy/node-http-handler": "npm:^4.0.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-stream": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/41af19a2a693efae31584bfdaf246c430bac6668469319256a7d8f2bb1c97c345fb583cecbfb64c345dd77b0ed0cb1f1105a95ca23a45aa9a801e726246389ea
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/credential-provider-ini@npm:3.731.1"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/credential-provider-env": "npm:3.731.0"
"@aws-sdk/credential-provider-http": "npm:3.731.0"
"@aws-sdk/credential-provider-process": "npm:3.731.0"
"@aws-sdk/credential-provider-sso": "npm:3.731.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.731.1"
"@aws-sdk/nested-clients": "npm:3.731.1"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/credential-provider-imds": "npm:^4.0.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1aafb8de25f3bf832cee1ce6a1fe7eaa9d191ad0a85245a0e1ea9abb81d88a3c2823aff1f1113db826af742a42fb389088e4beca2baec661c2d8337b7f741404
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/credential-provider-node@npm:3.731.1"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.731.0"
"@aws-sdk/credential-provider-http": "npm:3.731.0"
"@aws-sdk/credential-provider-ini": "npm:3.731.1"
"@aws-sdk/credential-provider-process": "npm:3.731.0"
"@aws-sdk/credential-provider-sso": "npm:3.731.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.731.1"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/credential-provider-imds": "npm:^4.0.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8630bb9b7a5ab695bb669a605407875ccde5123bc7af3192f7a4232bc563e28e7033f2f9182eceafe7b65d55b71daddec938438e6bad6bd0a5328f3ebc59a97d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/credential-provider-process@npm:3.731.0"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5a5ee677083eba7c5aea82293376a67f3658b43545044fb418c6c69584b3e6738ca315c1cd4f34c8225840e5f7c52fd328bf3dd5338cfcf97c6eb895aafec83a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/credential-provider-sso@npm:3.731.1"
dependencies:
"@aws-sdk/client-sso": "npm:3.731.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/token-providers": "npm:3.731.1"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fcb4dfcd7bbd9583b42c529b91f968e20386494177b4a9bb5306ac1367b7649421ee3abb2230dcd38cdfcafbfade907822c7d64c311416fcdf8400dbb2d90a80
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.731.1"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/nested-clients": "npm:3.731.1"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/87d242945f02098959936608a8969d92cbff99456439e8f3e4de5ee79b9146d8dfd5c8cbce964dbe90577b9c9b4a767c5915743cf5ae8cd3764afe6f96d45ef9
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/endpoint-cache@npm:3.723.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10c0/ac2468af7e36141157202ad4a3c51e8e4f57c9ba50478b7d7f223973ac5e6d7d90516a8eb06d2c9369f7313d0ac33a2c89930310b70f8db3ab4ec40567767a0e
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/96b4d045027e37ec1c57722af2a83097ac684024280dc377602ec16938b752a5086b035b21e5d91da1c34b6e2207c5802f4b8fbf3bbe08224d46b55cb55d7dda
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.731.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.723.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ea67c22f8918997c9c392cf9465fda85b9ff505feaec659ed46a137bc984c69910d5d6d9239765a0d8a39dc927bc0ecf4307a605b8d2aca67a7717fa9822d3fc
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c8dd6935dd873bdc93813b270ff483cf302335c971b8b25d44493559e33196dbde56c39119f5f2d640a4f6fc105feb5d793953c2169ec5c9226bd718d838a3c7
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.732.0":
version: 3.732.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.732.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-stream": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/00a5ae8be1418d367b6c684aa33c81d022fc7bfc955418ed64e58ef6946e2c1fe641769240031f55c9c9e63b222a7295023dd17ef8930f633a1edb5573a5d6ad
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-host-header@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fccbf813321318e24dd829e2ace7b60cee67424f4604d2e21949231556560e38e51872916e1b0df542e0fd3c09cbe283196f3a4b16fbd1492a094da5b38d0f53
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ae4cf48374f9cf953394c630e00f7491eca36f1275a692d63b51a43a5e888ea53ee09ed2349a5eb17c7d480f2c40dfe7740d7be6964d3b67a382f684ac238d40
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-logger@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/218eaa3e7bba9e099721f742f56a8879034c7c7a102411e58ba2db461f013f741d426e6642d862ca81a0aba26c8ff45d49b459a9624cb8094f085697e113f228
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ee3148188fad6aeb08259d9c2e26dead57e92b90c1fe3005f18e4aef8589d04ade15a2588244b030147aa99fb73766d05f6469f29ebea3d2456a39f8de895399
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.731.0"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/signature-v4": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-stream": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5f07e42bbe795c37270d39a1e132288f02e1d6e2f749bc77a99fa55205a936a0ed9d89fd98f5efd2f4938345edc68b7d6616ecbd728427f9533357ccf51844f4
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-ssec@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1ce7815c9eae026853e152c5f164a1a885fba1ab1717351399e8ec28c40d97be4f972724559743bc9a8b59f134e2ca6f409e841cad793be9986b2c8ebfced433
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.731.0"
dependencies:
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-endpoints": "npm:3.731.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c29a8834dbe82817902bada8db6367d42db63e9acd4d6bd0c46f36e54061abe36e2783eaa544746a1e04750d7e70a7115a6ac967dccca388d67499615a13036f
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/nested-clients@npm:3.731.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.731.0"
"@aws-sdk/middleware-host-header": "npm:3.731.0"
"@aws-sdk/middleware-logger": "npm:3.731.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.731.0"
"@aws-sdk/middleware-user-agent": "npm:3.731.0"
"@aws-sdk/region-config-resolver": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@aws-sdk/util-endpoints": "npm:3.731.0"
"@aws-sdk/util-user-agent-browser": "npm:3.731.0"
"@aws-sdk/util-user-agent-node": "npm:3.731.0"
"@smithy/config-resolver": "npm:^4.0.0"
"@smithy/core": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^5.0.0"
"@smithy/hash-node": "npm:^4.0.0"
"@smithy/invalid-dependency": "npm:^4.0.0"
"@smithy/middleware-content-length": "npm:^4.0.0"
"@smithy/middleware-endpoint": "npm:^4.0.0"
"@smithy/middleware-retry": "npm:^4.0.0"
"@smithy/middleware-serde": "npm:^4.0.0"
"@smithy/middleware-stack": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^4.0.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/smithy-client": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/url-parser": "npm:^4.0.0"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.0"
"@smithy/util-defaults-mode-node": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
"@smithy/util-retry": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e0d94a270e63d4b3025423edadf2aaabd6379b773b3b5a9aafc7f91f5f30b24b690c8dc1369121ae9f2ac98662a52ea89fadcf90a35c50cede9a8a06f820ab72
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/region-config-resolver@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7e3b6d28e549c5fb5f3e10a07bd1e38292aae5db27bd152987046eca7faf39aa6fe85ac314742d4d699495622ceec0f1b1876fbc80feafcb93ac5c84ff89411c
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.731.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/protocol-http": "npm:^5.0.0"
"@smithy/signature-v4": "npm:^5.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/74df6286ec74824b8a538496862c5e3bf0eb05dcb7f464a613e1dd610f796b219469af31b00a483a25983b47e58000b1bed9918c9e39c11f5f1c0c7861516f00
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.731.1":
version: 3.731.1
resolution: "@aws-sdk/token-providers@npm:3.731.1"
dependencies:
"@aws-sdk/nested-clients": "npm:3.731.1"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/property-provider": "npm:^4.0.0"
"@smithy/shared-ini-file-loader": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b7ae2b4a34e477cef71b31ac833259a8a202b009cc871dcbaeadc0873a529b255b3d28ed35ece7c7b7c87ae6eb2bcbae2f4cd07d4c4407d0558633fa15fb7661
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.731.0, @aws-sdk/types@npm:^3.222.0":
version: 3.731.0
resolution: "@aws-sdk/types@npm:3.731.0"
dependencies:
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f93d8d0ab574367f2c40f148d986c36b6fe66b854afba52198f1d1bf5b67e23673c3a507c07f9cf58cd3de00e76d241218abf989efc74b9a90213f5951ac7d43
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/5d2adfded61acaf222ed21bf8e5a8b067fe469dfaab03a6b69c591a090c48d309b1f3c4fd64826f71ef9883390adb77a9bf884667b242615f221236bc5a8b326
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/util-endpoints@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/types": "npm:^4.0.0"
"@smithy/util-endpoints": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cb283c33f786174f8e13266654bcf32bc9ad0f1cf0abb8f53a85e843c87dcc0332ab4ec7453d7b4ee99ac28ed99bb618b0b21247e6eb1f506ad6024f2cdd273b
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.6.1
resolution: "@aws-sdk/util-locate-window@npm:3.6.1"
dependencies:
tslib: "npm:^1.8.0"
checksum: 10c0/9d49776f723c21a8511b94e06eade379f0b0ae92a2bc05552f332ed7595a1bcc939d6741fd34c1de41f9f99e5e563ac4bba55e1c96108a362113dc3cf26ad6f5
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.731.0"
dependencies:
"@aws-sdk/types": "npm:3.731.0"
"@smithy/types": "npm:^4.0.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/85f0ea4e215282f87d11438a60dd452f63ce4b0ba1d862c0d588a58c135d2a17624b2cad85122f4bf6e002fdf536455e0d62b62531259f5e3482040a6d362aae
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.731.0":
version: 3.731.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.731.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.731.0"
"@aws-sdk/types": "npm:3.731.0"
"@smithy/node-config-provider": "npm:^4.0.0"
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/ce298379a21e8cd330753bb51c6c7a63dc9f25d9d39bd24712ae3d679357fa6baef75ff6885e487e80e5733fd617ed8dc7d8305d6db04f9e7b94324360297b08
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/xml-builder@npm:3.723.0"
dependencies:
"@smithy/types": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/632af3b6f0ae1a32cfb589c74e596d2f4a94edfd04f4d89b2217c51bc645b1603ae5d8e87e84d20fc8804fa6986b4abcfd30cc888a7c2ed646ad666c25a361c1
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/aix-ppc64@npm:0.24.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm64@npm:0.24.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm@npm:0.24.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-x64@npm:0.24.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-arm64@npm:0.24.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-x64@npm:0.24.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-arm64@npm:0.24.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-x64@npm:0.24.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm64@npm:0.24.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm@npm:0.24.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ia32@npm:0.24.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-loong64@npm:0.24.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-mips64el@npm:0.24.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ppc64@npm:0.24.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-riscv64@npm:0.24.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-s390x@npm:0.24.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-x64@npm:0.24.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-arm64@npm:0.24.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-x64@npm:0.24.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-arm64@npm:0.24.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-x64@npm:0.24.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/sunos-x64@npm:0.24.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-arm64@npm:0.24.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-ia32@npm:0.24.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-x64@npm:0.24.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@js-joda/core@npm:5.6.4":
version: 5.6.4
resolution: "@js-joda/core@npm:5.6.4"
checksum: 10c0/e8553d353e759d169c41f1e1695eaef5e78d607d96ac7db55fc3ff490cfed68ab62220a1f67f4b0c9a76dd24b08da5bd35cb90f902ce63b731886194862a649b
languageName: node
linkType: hard
"@js-joda/locale_en-us@npm:4.15.1":
version: 4.15.1
resolution: "@js-joda/locale_en-us@npm:4.15.1"
peerDependencies:
"@js-joda/core": ">=3.2.0"
"@js-joda/timezone": ^2.3.0
checksum: 10c0/75603a17ff8b2b89ef0afd5af212775b9e0b1b828f6b7f89405a2095d731cbae42660db0b2fb10009e0e923d0636387011584588f7010ff42ca583624dc2da1c
languageName: node
linkType: hard
"@js-joda/timezone@npm:2.21.2":
version: 2.21.2
resolution: "@js-joda/timezone@npm:2.21.2"
peerDependencies:
"@js-joda/core": ">=1.11.0"
checksum: 10c0/43c8ebf7019ed7bae4eb9793a6cdc9b3186b9ae88b5f3fc51c87113ce2bf3b391ef887063b756756b67bbaf54880a9595c27fd5d958406ebbe97b48ac201e1d7
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^4.0.1":
version: 4.0.1
resolution: "@smithy/abort-controller@npm:4.0.1"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1ecd5c3454ced008463e6de826c294f31f6073ba91e22e443e0269ee0854d9376f73ea756b3acf77aa806a9a98e8b2568ce2e7f15ddf0a7816c99b7deefeef57
languageName: node
linkType: hard
"@smithy/chunked-blob-reader-native@npm:^4.0.0":
version: 4.0.0
resolution: "@smithy/chunked-blob-reader-native@npm:4.0.0"
dependencies:
"@smithy/util-base64": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4387f4e8841f20c1c4e689078141de7e6f239e7883be3a02810a023aa30939b15576ee00227b991972d2c5a2f3b6152bcaeca0975c9fa8d3669354c647bd532a
languageName: node
linkType: hard
"@smithy/chunked-blob-reader@npm:^5.0.0":
version: 5.0.0
resolution: "@smithy/chunked-blob-reader@npm:5.0.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/55ba0fe366ddaa3f93e1faf8a70df0b67efedbd0008922295efe215df09b68df0ba3043293e65b17e7d1be71448d074c2bfc54e5eb6bd18f59b425822c2b9e9a
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^4.0.0, @smithy/config-resolver@npm:^4.0.1":
version: 4.0.1
resolution: "@smithy/config-resolver@npm:4.0.1"
dependencies:
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4ec3486deb3017607ed1b9a42b4b806b78e2c7a00f6dd51b98ccb82d9f7506b206bd9412ec0d2a05e95bc2ac3fbbafe55b1ffce9faccc4086f837645f3f7e64d
languageName: node
linkType: hard
"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.1.1":
version: 3.1.1
resolution: "@smithy/core@npm:3.1.1"
dependencies:
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/00b25d4bc85bc3ba731f3b11ee068b0824f3121b03c886c6d20d5acdcb55a32830f80df405c2ba980508efb0c85f3c7ba12a250df6accc7675ee11902dff7864
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^4.0.0, @smithy/credential-provider-imds@npm:^4.0.1":
version: 4.0.1
resolution: "@smithy/credential-provider-imds@npm:4.0.1"
dependencies:
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/76b5d82dfd2924f2b7a701fa159af54d3e9b16a644a210e3a74e5a3776bb28c2ffbdd342ed3f2bb1d2adf401e8144e84614523b1fad245b43e319e1d01fa1652
languageName: node
linkType: hard
"@smithy/eventstream-codec@npm:^4.0.1":
version: 4.0.1
resolution: "@smithy/eventstream-codec@npm:4.0.1"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/439262fddae863cadad83cc468418294d1d998134619dd67e2836cc93bbfa5b01448e852516046f03b62d0edcd558014b755b1fb0d71b9317268d5c3a5e55bbd