-
Notifications
You must be signed in to change notification settings - Fork 722
Expand file tree
/
Copy pathyarn.lock
More file actions
10653 lines (9649 loc) · 385 KB
/
yarn.lock
File metadata and controls
10653 lines (9649 loc) · 385 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: 10c0
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
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-github-runner/ami-housekeeper@workspace:functions/ami-housekeeper":
version: 0.0.0-use.local
resolution: "@aws-github-runner/ami-housekeeper@workspace:functions/ami-housekeeper"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-sdk/client-ec2": "npm:^3.901.0"
"@aws-sdk/client-ssm": "npm:^3.901.0"
"@aws-sdk/types": "npm:^3.901.0"
"@types/aws-lambda": "npm:^8.10.155"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.4.0"
languageName: unknown
linkType: soft
"@aws-github-runner/aws-powertools-util@npm:*, @aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util":
version: 0.0.0-use.local
resolution: "@aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util"
dependencies:
"@aws-lambda-powertools/logger": "npm:^2.27.0"
"@aws-lambda-powertools/metrics": "npm:^2.27.0"
"@aws-lambda-powertools/tracer": "npm:^2.27.0"
"@types/aws-lambda": "npm:^8.10.155"
"@types/node": "npm:^22.18.8"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.0"
languageName: unknown
linkType: soft
"@aws-github-runner/aws-ssm-util@npm:*, @aws-github-runner/aws-ssm-util@workspace:libs/aws-ssm-util":
version: 0.0.0-use.local
resolution: "@aws-github-runner/aws-ssm-util@workspace:libs/aws-ssm-util"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-ssm": "npm:^3.901.0"
"@aws-sdk/types": "npm:^3.901.0"
"@types/aws-lambda": "npm:^8.10.155"
"@types/node": "npm:^22.18.8"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
languageName: unknown
linkType: soft
"@aws-github-runner/control-plane@workspace:functions/control-plane":
version: 0.0.0-use.local
resolution: "@aws-github-runner/control-plane@workspace:functions/control-plane"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-lambda-powertools/parameters": "npm:^2.27.0"
"@aws-sdk/client-ec2": "npm:^3.901.0"
"@aws-sdk/client-sqs": "npm:^3.901.0"
"@aws-sdk/types": "npm:^3.901.0"
"@middy/core": "npm:^6.4.5"
"@octokit/auth-app": "npm:8.1.1"
"@octokit/core": "npm:7.0.5"
"@octokit/plugin-throttling": "npm:11.0.2"
"@octokit/rest": "npm:22.0.0"
"@octokit/types": "npm:^15.0.0"
"@types/aws-lambda": "npm:^8.10.155"
"@types/node": "npm:^22.18.8"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.4.0"
moment-timezone: "npm:^0.6.0"
nock: "npm:^14.0.10"
ts-node: "npm:^10.9.2"
ts-node-dev: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@aws-github-runner/gh-agent-syncer@workspace:functions/gh-agent-syncer":
version: 0.0.0-use.local
resolution: "@aws-github-runner/gh-agent-syncer@workspace:functions/gh-agent-syncer"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-s3": "npm:^3.901.0"
"@aws-sdk/lib-storage": "npm:^3.903.0"
"@aws-sdk/types": "npm:^3.901.0"
"@middy/core": "npm:^6.4.5"
"@octokit/rest": "npm:22.0.0"
"@types/aws-lambda": "npm:^8.10.155"
"@types/node": "npm:^22.18.8"
"@types/request": "npm:^2.48.13"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
aws-sdk-client-mock-vitest: "npm:^6.2.1"
axios: "npm:^1.12.2"
languageName: unknown
linkType: soft
"@aws-github-runner/termination-watcher@workspace:functions/termination-watcher":
version: 0.0.0-use.local
resolution: "@aws-github-runner/termination-watcher@workspace:functions/termination-watcher"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-ec2": "npm:^3.901.0"
"@aws-sdk/types": "npm:^3.901.0"
"@middy/core": "npm:^6.4.5"
"@types/aws-lambda": "npm:^8.10.155"
"@types/node": "npm:^22.18.8"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
languageName: unknown
linkType: soft
"@aws-github-runner/webhook@workspace:functions/webhook":
version: 0.0.0-use.local
resolution: "@aws-github-runner/webhook@workspace:functions/webhook"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-sdk/client-eventbridge": "npm:^3.901.0"
"@aws-sdk/client-sqs": "npm:^3.901.0"
"@middy/core": "npm:^6.4.5"
"@octokit/rest": "npm:22.0.0"
"@octokit/types": "npm:^15.0.0"
"@octokit/webhooks": "npm:^14.1.3"
"@octokit/webhooks-types": "npm:^7.6.1"
"@types/aws-lambda": "npm:^8.10.155"
"@types/express": "npm:^5.0.3"
"@types/node": "npm:^22.18.8"
"@vercel/ncc": "npm:0.38.4"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.0"
express: "npm:^5.1.0"
ts-node-dev: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@aws-lambda-powertools/commons@npm:2.27.0":
version: 2.27.0
resolution: "@aws-lambda-powertools/commons@npm:2.27.0"
checksum: 10c0/b0e3ff68c10b1f33caa86e784bcf10aad53f74e5c68399b3cb037862b7b2f5f11c2c464b8f6fbd0245bdfe18daf099be0b9836382549cb5b36cfb0a2ea99e7e2
languageName: node
linkType: hard
"@aws-lambda-powertools/logger@npm:^2.27.0":
version: 2.27.0
resolution: "@aws-lambda-powertools/logger@npm:2.27.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.27.0"
lodash.merge: "npm:^4.6.2"
peerDependencies:
"@aws-lambda-powertools/jmespath": 2.27.0
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-lambda-powertools/jmespath":
optional: true
"@middy/core":
optional: true
checksum: 10c0/841dee5ca70d48c2af8fa76b5e1d0388b9b2c328b60221122959299606c4bea6ad6ade4a062baced22a32c7d51c5b02de69755c349826c59421d3a82706bcbba
languageName: node
linkType: hard
"@aws-lambda-powertools/metrics@npm:^2.27.0":
version: 2.27.0
resolution: "@aws-lambda-powertools/metrics@npm:2.27.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.27.0"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/6d657731e1264056558544cdf2b7decb59caf9147bab11cbe0ee9167759f950fb53c2d3d782de6b377c3a821e5fabbf1ec4ab499d761d8b9f990c64da445d9ef
languageName: node
linkType: hard
"@aws-lambda-powertools/parameters@npm:^2.27.0":
version: 2.27.0
resolution: "@aws-lambda-powertools/parameters@npm:2.27.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.27.0"
peerDependencies:
"@aws-sdk/client-appconfigdata": ">=3.x"
"@aws-sdk/client-dynamodb": ">=3.x"
"@aws-sdk/client-secrets-manager": ">=3.x"
"@aws-sdk/client-ssm": ">=3.x"
"@aws-sdk/util-dynamodb": ">=3.x"
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-sdk/client-appconfigdata":
optional: true
"@aws-sdk/client-dynamodb":
optional: true
"@aws-sdk/client-secrets-manager":
optional: true
"@aws-sdk/client-ssm":
optional: true
"@aws-sdk/util-dynamodb":
optional: true
"@middy/core":
optional: true
checksum: 10c0/cac56a20bd2b7c00a11540cee7d985474dc344b7b89170921f4273d84904414be272890a87e5c640b2b0c6d86dd30579f243fd38cccd557a1b1dc86df3e8cdc7
languageName: node
linkType: hard
"@aws-lambda-powertools/tracer@npm:^2.27.0":
version: 2.27.0
resolution: "@aws-lambda-powertools/tracer@npm:2.27.0"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.27.0"
aws-xray-sdk-core: "npm:^3.10.3"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/850b5bbfda802c99bddf3b701640bc8d3c92f817fcdbaed4b296d838b5e8022f596bde4ed5520dbf61630d715940e6f0bb1bd233088919287ad339d5be4b3cb0
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:^3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-ec2@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/credential-provider-node": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/819942ac19d4f14a079d907ff09bd7a3e5f94ec29858101cb2738e76c4211852f503e619eed5faa91a3c37247ba27947f45ab051d3d2a5a5a0810df9d7a9b15e
languageName: node
linkType: hard
"@aws-sdk/client-eventbridge@npm:^3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-eventbridge@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/credential-provider-node": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6f246fe1d8de1a6180db04913c98b1e60b16f38df3dadb2d199ded8947eb96b7d797c990d4efad70f1e2170f74cc1149a0ce1e908894ebef20866b03fd3aea00
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-s3@npm:3.901.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.901.0"
"@aws-sdk/credential-provider-node": "npm:3.901.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.901.0"
"@aws-sdk/middleware-expect-continue": "npm:3.901.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-location-constraint": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.901.0"
"@aws-sdk/middleware-ssec": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.0"
"@smithy/eventstream-serde-node": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-blob-browser": "npm:^4.2.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/hash-stream-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/md5-js": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.4.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/34d44793ade6d725d360a100cad47a9204ba077b37aa8ae4ff6d4b07491cc762ddd75d63b53e5070dca66dd18c204b8feef0240184c87fb895fa8d00337abf80
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-sqs@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/credential-provider-node": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/md5-js": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1321206eead961a9024799a0dd25eae911fcfc7f4ae194c7ddd0cee2353f7d59b02b43b2793112236c7c1e8a14fe9cd4bb4592ad10f992ed74cb647334d6f94f
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:^3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-ssm@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/credential-provider-node": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c995f0e9e8c2be9d71ef3dc3754f518a30f9db4aa129be03ac4a719dcd4002afb90b12a57d73d0358b144f56af1baa0a0d16fb729682121e4d1905bb13540bbc
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/client-sso@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b0a02868bf826411668c418c5fd8ab1225bff7dfc10587cebad400c027fb4a28174439eeb5b05bbed1eec167216ea492b3dfbea4b3c9a494a31e219c0abdd38c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/core@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f86625938dedf959b2acbe89bb50e313f0996c59a4772593d57ef55f4023f492d5760b1dc7b9e4f4afa13e41e5cfd0a8b8d08df2f2e9d0347bc74d9d67515c14
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-env@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e53ecdfa5fa96cf1129b38cde0b5a27c314863e612b8fac5fd9dedcd43a03c2a591deb4ab34f4316c0994480f438272660118ed77ddd591e2cc0dfed4dbde29e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-http@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-stream": "npm:^4.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/374398233aaab5de9be9802df00deeada0d420ffc2b6ed2f8fbcc2cd82aa4778dc22e7686ac995c41ae86774239f78418ddc5d2f6c57d0594a2eb1b0d886179e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/credential-provider-env": "npm:3.901.0"
"@aws-sdk/credential-provider-http": "npm:3.901.0"
"@aws-sdk/credential-provider-process": "npm:3.901.0"
"@aws-sdk/credential-provider-sso": "npm:3.901.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.901.0"
"@aws-sdk/nested-clients": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f3632c187db167912badc0013235592a874c2c8ef3c6d81b659b8873d9430914bef36556c786a9d8550d70926898dd9d305cafd5ae5ec572501d193fa263c1bb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-node@npm:3.901.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.901.0"
"@aws-sdk/credential-provider-http": "npm:3.901.0"
"@aws-sdk/credential-provider-ini": "npm:3.901.0"
"@aws-sdk/credential-provider-process": "npm:3.901.0"
"@aws-sdk/credential-provider-sso": "npm:3.901.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ae9965cb1bde4ddbfec5905158cdd385c165074c7af3626fc954e5dbc43f722438856c9a47779a49cf05b04939fc617800037bd0e3ab2848ded2a36ef5a4e72f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-process@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d920a1358c3a95778a78c1a01c066e2901d619e45cde8cb27a37d4f9727c72a3274df37167650e7ee0a7c2c6c0256cf322cb012123039bef7522b9029a3b9064
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.901.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.901.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/token-providers": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b9795d0d685fa880cd177642a121c89ffe400ea2c1bc6be4bf2a634e4998230f63f15489cf1b0208482ad5ffb2d3cc8a59c563f2e09cd19f08d3e070a2839d8c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/nested-clients": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5b7e1986d7c64d0082d0fbf060b76e5012416326df9c02f62e581759dfab669701de2f93d10d6b8e9b47520873359fecb7db88d3700a39851ff6c826c2bc8fa2
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.903.0":
version: 3.903.0
resolution: "@aws-sdk/lib-storage@npm:3.903.0"
dependencies:
"@smithy/abort-controller": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-s3": ^3.901.0
checksum: 10c0/a3e7a337cf3f1bcab253a75b2eedda6cf6cbb82849b2aa093a30d3cc0d2b8779c6bd1bc5ac7f81fa044bfbcfd912d7a6c7a744b241ead3c058aac2bad758aa70
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d3675d7468e4c268854bfcd945683bd87e55f194ff19379977a9df77591f5ab57258836cceed5aefad33ae783e5dd0120d8d2a983b1acdcae90058a6fc572d41
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/534714439b8f62e9b8ac0fb75d40b2cb51c4c69745ca80a2fc79cd927d492eba5748f0a0a8aacd5a0f11f621f718756504a5792b2445d3643b4aa5ee7df50666
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.901.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.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.4.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/82849e586479594bd73c8779244e24f0fcb83d66b3331123c3f4949ffd5e4417d3471cbd05a8d111e6999b65a8d291ba2269531683b2dfe373c5541bf0a60aab
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-host-header@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f36cffb33532df97f7480a9a0705a0d3e874861b12e10d3b1713ef4f830e1d17e8568c3baff1c4c05ad681115af6e8e4f84d828a9834a9df8b6127fbc5af5f48
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a1e57365274bf89dc1b74e70be377de819251ac529d140442401bc7f968021a429ae0a77edd68cbac868905a7ded7a9d09aaedac89117f15ad2c01e1bed91fea
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-logger@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6ad444c2d791d2f8158c1e5262cdc12591a41164f63c660eb8874d4f915f007001d152deb426874ff4d4b1326d5e6b18bbdfe3087fa6fdc9ce7c88ed6bb75997
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws/lambda-invoke-store": "npm:^0.0.1"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/428d2da0d4583c8b33e5c10153b5cfebf572962a11df7501c35b5361b9e39fc9ab7b8778484a8f29d521f1ba37865bf0a441650de7c539e707714d4321c13272
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-format-url": "npm:3.901.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/41460be76f27f0b672c562f79ac48119cc1bd72e0e40fa9dc28df80b3af25a92db3ca23c98b72f07ff8f0c18e1f63db39e2d57a89c3cd79d06bf8306af5f0274
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.4.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/382ccbd07de1b9112a8df436134df219dde780d105746cb7997925901901529e49dee77f434c1dfbfb691d5d654000f7e9e36404a417fb87edef525b40dfc6a5
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-hex-encoding": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f6ddc5c63db750131a848cc5a350ecd9f0d0e21904cc810f538c242b438c734d400a6b776d7307e73e49e9a984cc6ac11261afc48a13412a86c70a3b3089a613
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-ssec@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6748ba6674d1dcf48c970e67d477127924c2ae1c8026310b78d54221d3fbd5d5795f690119583cb2207e00bcc91875df5058d83763a37d311dd2ec1bba0367ce
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.901.0"
dependencies:
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/73d5913eca05799918c0119510d0a49b5c5b7626a098c5ff48954f1b7e42278b0fcfe589f06d2b79d1dec1c316647f4104228fb42d0e72932601b0fddc8ea142
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/nested-clients@npm:3.901.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.901.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.901.0"
"@aws-sdk/util-user-agent-node": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.14.0"
"@smithy/fetch-http-handler": "npm:^5.3.0"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.0"
"@smithy/middleware-retry": "npm:^4.4.0"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.2.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.0"
"@smithy/util-defaults-mode-browser": "npm:^4.2.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3b0211fbec00d3f2122270e70ff8a4dd2da510d9955655b5c8d39a49b9abd03e948d9f13e4db0329b941fd62cbd6c59043788d3ae1006ade4bfc225d2cec7caa
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.901.0":
version: 3.901.0