-
Notifications
You must be signed in to change notification settings - Fork 20
/
yarn.lock
12118 lines (10926 loc) · 423 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
"@apify/actor-templates@npm:~0.1.5":
version: 0.1.5
resolution: "@apify/actor-templates@npm:0.1.5"
checksum: 10c0/69b8fb70da078a5373316c6478bb56739876d11ca4d92fa5fe1cbbcad6b88ad1e02097c90b934f3817ea502530699a076106894b80b4c886ca8887730a7b3177
languageName: node
linkType: hard
"@apify/consts@npm:^2.20.0, @apify/consts@npm:^2.23.0, @apify/consts@npm:^2.25.0, @apify/consts@npm:^2.35.0, @apify/consts@npm:~2.35.0":
version: 2.35.0
resolution: "@apify/consts@npm:2.35.0"
checksum: 10c0/b4e8a0655bb33e183d2ac4cffb47c758e432d10ea067ff9f8c2bc4ed0efe5e2b5131c98d899f60563b1d0afe2e9d0d50d066ec0124a966a234f4be37d37ec35d
languageName: node
linkType: hard
"@apify/datastructures@npm:^2.0.0":
version: 2.0.2
resolution: "@apify/datastructures@npm:2.0.2"
checksum: 10c0/d52b852bdc72be5e7debe72a90bd15deede574ae0d6313556fa8da148c87e36a3028105423e8b498569fd52c7b71579e5c517d1a3e89a7ffc6c6df512add0335
languageName: node
linkType: hard
"@apify/eslint-config-ts@npm:^0.4.1":
version: 0.4.1
resolution: "@apify/eslint-config-ts@npm:0.4.1"
dependencies:
"@apify/eslint-config": "npm:^0.4.0"
eslint-import-resolver-typescript: "npm:^3.6.1"
eslint-plugin-import: "npm:^2.29.0"
eslint-plugin-jsx-a11y: "npm:^6.7.1"
eslint-plugin-react: "npm:^7.33.2"
eslint-plugin-react-hooks: "npm:^4.6.0"
peerDependencies:
"@typescript-eslint/eslint-plugin": "*"
"@typescript-eslint/parser": "*"
eslint: "*"
typescript: "*"
checksum: 10c0/4c3695634280fec8878cc6e43538be5913deec9b49cd4bfbe2e1b70a8eb4d449ec1bdde3e5b1826bff2558ef8a15afaf9730714156c1e622218d70523e467962
languageName: node
linkType: hard
"@apify/eslint-config@npm:^0.4.0":
version: 0.4.0
resolution: "@apify/eslint-config@npm:0.4.0"
dependencies:
eslint-config-airbnb: "npm:^19.0.0"
eslint-config-airbnb-base: "npm:^15.0.0"
eslint-import-resolver-typescript: "npm:^2.5.0"
eslint-plugin-import: "npm:^2.25.3"
eslint-plugin-jsx-a11y: "npm:^6.5.1"
eslint-plugin-react: "npm:^7.27.0"
eslint-plugin-react-hooks: "npm:^4.3.0"
peerDependencies:
eslint: "*"
checksum: 10c0/ad8422b05d7b352d4dee2972c13b3c589a5750696aeca8d36b42689525bc795692cfc9057c58608cafcb1031656e6313a6f322a50f08b2e2998b549d31aac3e0
languageName: node
linkType: hard
"@apify/input_schema@npm:~3.12.0":
version: 3.12.3
resolution: "@apify/input_schema@npm:3.12.3"
dependencies:
"@apify/consts": "npm:^2.35.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
checksum: 10c0/eb27e7cf55494664677e330cefa7bc09fac7ddb346d18cde6c4b4cbb5d7097209724c959bc1ada62536dc01bc448f42a008175e667798455620f55d7681735d1
languageName: node
linkType: hard
"@apify/input_secrets@npm:^1.1.40":
version: 1.1.60
resolution: "@apify/input_secrets@npm:1.1.60"
dependencies:
"@apify/log": "npm:^2.5.11"
"@apify/utilities": "npm:^2.11.1"
ow: "npm:^0.28.2"
checksum: 10c0/c4dc8aebd01b185802b88fc7cb2be5166dc9037e1604a54da3091176880a4d86fb4ffe84a066f854aad015117253392947e595018b87e9bcfd59a8e25e9b26ad
languageName: node
linkType: hard
"@apify/log@npm:^2.2.6, @apify/log@npm:^2.4.0, @apify/log@npm:^2.4.3, @apify/log@npm:^2.5.11":
version: 2.5.11
resolution: "@apify/log@npm:2.5.11"
dependencies:
"@apify/consts": "npm:^2.35.0"
ansi-colors: "npm:^4.1.1"
checksum: 10c0/af27b710bb6ad9248bcfff4657b7a0cfca7773ff2be2c410b7e7e0f88670e5ed6915755fb2c8d6412657b463268bbcaa266d9fc0eae27a2b3a0af11b7c7734b5
languageName: node
linkType: hard
"@apify/ps-tree@npm:^1.2.0":
version: 1.2.0
resolution: "@apify/ps-tree@npm:1.2.0"
dependencies:
event-stream: "npm:3.3.4"
bin:
ps-tree: bin/ps-tree.js
checksum: 10c0/02420412f761f5090c3abd7b38264e4564f8c64901de0f50e538882cdedf669845292748c38ecbf064f1e33d2cccdcde5883eaa0a2233e9dd414f8a9e77f1599
languageName: node
linkType: hard
"@apify/pseudo_url@npm:^2.0.30":
version: 2.0.52
resolution: "@apify/pseudo_url@npm:2.0.52"
dependencies:
"@apify/log": "npm:^2.5.11"
checksum: 10c0/3a52d76bdc85a7f6218ae4b3cdcd01182f191f18c6476c7e83ac653fcb2965005057cf74437f31df5c51b63e21bb17154729220e1fc29245f0dfca45feba040d
languageName: node
linkType: hard
"@apify/timeout@npm:^0.3.0":
version: 0.3.1
resolution: "@apify/timeout@npm:0.3.1"
checksum: 10c0/3019f9ef14bad1e3675553e85032f87ef5a2552dcbb1d4b26305e00591647999000641a0660d30838ea1a6aaab558881bc9f5514e52614969bca9bdccaf96fa6
languageName: node
linkType: hard
"@apify/tsconfig@npm:^0.1.0":
version: 0.1.0
resolution: "@apify/tsconfig@npm:0.1.0"
checksum: 10c0/aa3363b0fb68e1eb000c1e71fcc50b966c2bfbf8533df5b787bbb1a57752cf9ab516eb599e06d8fd67c187941b93dde044262b0b590db8e6409d146885a7bba2
languageName: node
linkType: hard
"@apify/utilities@npm:^2.11.1, @apify/utilities@npm:^2.7.10, @apify/utilities@npm:^2.9.3, @apify/utilities@npm:~2.11.0":
version: 2.11.1
resolution: "@apify/utilities@npm:2.11.1"
dependencies:
"@apify/consts": "npm:^2.35.0"
"@apify/log": "npm:^2.5.11"
checksum: 10c0/319d1b222a64fa704370763adc37b2151e60b997dd8f8b345d0c5f4c397cd5e7893d8e89eeb6ff974875ff9fda760c4b2626a95efabf65b644894e1435a5c5f4
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@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-cloudfront@npm:^3.699.0":
version: 3.716.0
resolution: "@aws-sdk/client-cloudfront@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@aws-sdk/xml-builder": "npm:3.709.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ff1ddc551f400a0d1b3418f19448ba6f785461a57c7649fd7cbeb19c8a5e63160a450949768b8476548cb5c69625c2541cd4e68d80e85fda43fa91504353c5a2
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.712.0":
version: 3.717.0
resolution: "@aws-sdk/client-s3@npm:3.717.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/client-sso-oidc": "npm:3.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0"
"@aws-sdk/middleware-expect-continue": "npm:3.714.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.717.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-location-constraint": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.716.0"
"@aws-sdk/middleware-ssec": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@aws-sdk/xml-builder": "npm:3.709.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/eventstream-serde-browser": "npm:^3.0.14"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.11"
"@smithy/eventstream-serde-node": "npm:^3.0.13"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-blob-browser": "npm:^3.1.10"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/hash-stream-node": "npm:^3.1.10"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f89525742aa38e0acd9c6395dabad3464dfb83c28d019b66ffca4268676ae93089be221e07f087d6d57856ab9c43ffd700c43f9ec392b995aefec29b24549ae0
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sts@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/core@npm:3.716.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-env@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-http@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-node@npm:3.716.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-ini": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-process@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/token-providers": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5d1e941343164b4246722cc88909cd50966116c2028d9760f2a09b85dae80c1198de682b1f2c1c9d74a62bc8942e4cedb63695782b5b08f167bfef2f09c5abf3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/28e5b97cb7ca314c1013a1af867e0853f9e542bd98105af09e58e824abc30f7cdf14a2cfa2b443d449a89a1d94f046db2014ec001d5a99c5df1d34944a1d5631
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/41b1bb79e34cd445e783affe896dc01ecdf71b13b68b2354a24c18f9383d2f4ab76cbae516bb5d3413a0aaa094bb783556aed04bc5a7cc4c06c09eecd2c88d73
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/91652133b747c5fb84fca22176e38f982dc79e124cfa99310a07126bb9870f1abd5856dde0c708c776b25708c55d6cc1146bedcab87307e041ecf24538347738
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.717.0":
version: 3.717.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.717.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.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8034301a5a4d0296a5699b152b03f5db4369ddc433d232ffe6a92febae8a93c09f339218e64fe5eb46f0be4e517e739de67ba093fd7b49a068d13ce987e28cd0
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-host-header@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/6766c16359561e147d4408df76c56a26ee53c34ba58a6e20c15b654045dd0a7005da98061e0de5520f3fa059fb24f751d1521cbf5a7a2d2ba41585c54f13b45d
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-logger@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dadd75dcceb88b3576c38efd853159ac76fe0a8b5723dd8de20b6b94a7689beca2352e53ec229dede634ea0971335258d135b25e4e4649cbc562b5ecb951103d
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-ssec@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/9ad944a94549c9a4a068ea6d46df2ab830a91c49936260fe4347ec5a01d6efc7649979eee021ebad84a73802b75c83bb142392f7a1b7b99f5e40ed1e579b564f
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/b66356f04adfda722910c2ddabed763fa40af0e9988c37b6dd7f6fb805538122100dbfb4332caa141fdaf0dd2e877e95a32513319046e109af905679697ad431
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/region-config-resolver@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.716.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/04058d993cea25cb4084feade3ebb7863788a24dc6b266d042e0de7cb0f83b8cded8dd5990a835ff2505725eb8417f5e379bfc8ab2f59693152e59b8c56916c9
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/token-providers@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.714.0
checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.714.0, @aws-sdk/types@npm:^3.222.0":
version: 3.714.0
resolution: "@aws-sdk/types@npm:3.714.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/fd1b47d0d85bef495a2d76e4ad8d56328638ba59fec9719c7f30aedbde1f058d269825e00fc78eebafda14b73a583445911599eba6e9d039e3059cc79dd074d4
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-arn-parser@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/dd3ff41885f3c9c69043bf145d9e28ba5d18e71d3ffc5e97f3700fa4f9461d092d33d632eca00236f00e25ebcf39ed1a6900d7b39d2f592c83e38115890ad701
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-endpoints@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-endpoints": "npm:^2.1.7"
tslib: "npm:^2.6.2"
checksum: 10c0/2cccad1c18848e48a764def1aa46efac10900a9c083d6f8d8cf6d9495e66439e0dcb54c181242840bb3ea814ac4c1ef1f663c2b17d34e52035917435a473cd68
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6b8813e28c7a73316d0a3b3259b3a6ecc403390f475f8e223a81469e24583712c07cb36a026e5109c82cf00c237974025cf320e2b35f4256339732e99cbcc092
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/03cc627ebe7660d51232a9d08b6f217f6a4a944657abb3f21489c274342bc6bfad709daf7f1ad6c430e7498dea94acd7accc589c5cfa4168f8b2ac43c47c9d3e
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/xml-builder@npm:3.709.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/019feddf39e8a98862baac53cce8e39cf1d9452e6ca8d04a89854429e31dadd2280cf5d8c3ebf9cb04ec5ffc871d86eeb74318a32ad28d3618ebf24305722896
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@biomejs/biome@npm:^1.8.3":
version: 1.9.4
resolution: "@biomejs/biome@npm:1.9.4"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.9.4"
"@biomejs/cli-darwin-x64": "npm:1.9.4"
"@biomejs/cli-linux-arm64": "npm:1.9.4"
"@biomejs/cli-linux-arm64-musl": "npm:1.9.4"
"@biomejs/cli-linux-x64": "npm:1.9.4"
"@biomejs/cli-linux-x64-musl": "npm:1.9.4"
"@biomejs/cli-win32-arm64": "npm:1.9.4"
"@biomejs/cli-win32-x64": "npm:1.9.4"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10c0/b5655c5aed9a6fffe24f7d04f15ba4444389d0e891c9ed9106fab7388ac9b4be63185852cc2a937b22940dac3e550b71032a4afd306925cfea436c33e5646b3e
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-arm64@npm:1.9.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-x64@npm:1.9.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64-musl@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-arm64@npm:1.9.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.9.4":
version: 1.9.4