-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
6691 lines (6029 loc) · 245 KB
/
Copy pathyarn.lock
File metadata and controls
6691 lines (6029 loc) · 245 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: 10
cacheKey: 10c0
"@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/checksums@npm:^3.1000.2":
version: 3.1000.2
resolution: "@aws-sdk/checksums@npm:3.1000.2"
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.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/61471054a726cd80a7df432d0d6f688e4abf18670451490b87e795538c2d7eecb9e8d09d1a2a7acd39d01afdb1af0bf120847cc9fe1b46978a16159ab288a137
languageName: node
linkType: hard
"@aws-sdk/client-codecommit@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-codecommit@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/e1cd47b72d8ce938d891423133534f139e36bce02ba8506768c3e40d66e3e38f7e6dc1354922a2980188ad601238426cb4eef8f7142806338d356da5bc907a49
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/032cb6f4d342480c6dfa67e3021a448131182a1b5b23763ba11ef7584e95d93737bcfd2d938e11276588915a6e3e3a26d9e6fb2fa8197fc606f6d1a7c6bfc58c
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-ec2@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-ec2": "npm:^3.972.22"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/d085b6b1f2c0eb545255a41950ab0029df1cdde00f8b35b10345da430fbaaf036d70bdaee719a2fa962ecff8f497b409d1cf5006bb466e13e74d4b5135055fb3
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-ecr@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/214d0aac460e8ca3f1985b1742a8558230f6a11a20b4d30a5f773a2501bb1c2c209ee02f9ffdf61df4a88c603722e5c65b14ad337576e066b965ba05891f762c
languageName: node
linkType: hard
"@aws-sdk/client-eks@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-eks@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/a93f8b398fb935c5a23564450a92027ca311f6b97eb5150aa4567936c467d05acd2f44048352f4ed2edc4113d52e49c6ea5d02f4bc5398b67e70d7976216d13d
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-rds@npm:3.1036.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-rds": "npm:^3.972.22"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/d64ec967c237f66a78f6050fd67777e59e1357eb0265327a797144b294f3b4071e292c14a7ee2cd745d47f60bd6008f85e25bdb112894df0dfdfaab77e3511bf
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/client-s3@npm:3.1036.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.974.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.10"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.10"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.974.13"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.34"
"@aws-sdk/middleware-ssec": "npm:^3.972.10"
"@aws-sdk/middleware-user-agent": "npm:^3.972.35"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.22"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.21"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/eventstream-serde-browser": "npm:^4.2.14"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.14"
"@smithy/eventstream-serde-node": "npm:^4.2.14"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-blob-browser": "npm:^4.2.15"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/hash-stream-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/md5-js": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.5"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.4"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.16"
tslib: "npm:^2.6.2"
checksum: 10c0/82dd6dd94bf79e8906c5f4cae2723adea832322bf9533f02ba4af91d6ed76f823ccc2cab3e70f2cf983aa75e73b7aa9506dc97de20ee59b88ad6a5b664646e99
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.974.18, @aws-sdk/core@npm:^3.974.5":
version: 3.974.18
resolution: "@aws-sdk/core@npm:3.974.18"
dependencies:
"@aws-sdk/types": "npm:^3.973.11"
"@aws-sdk/xml-builder": "npm:^3.972.28"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/core": "npm:^3.24.6"
"@smithy/signature-v4": "npm:^5.4.6"
"@smithy/types": "npm:^4.14.3"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c4a6d7870ea3c98ab9daa6399ef14ead8f4811469d0479e3b1e65227c630b17adc5c73c6065493c7a61f0a655e983903f9d4d20a7912f73235d25e0b8aa15772
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.28":
version: 3.972.42
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.42"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/cf71aea63e5fc6d9d3e3a7b81233d2782f020fa435662f502a284f2add9519582ebca97b8cac113d75a9022b4827bf084d2205daa13f1358df354cd2ff79f4f1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.31, @aws-sdk/credential-provider-env@npm:^3.972.44":
version: 3.972.44
resolution: "@aws-sdk/credential-provider-env@npm:3.972.44"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/cd5160e6f6a0d609dfabf1bb5af3f4fd822e032df316a87e962417a9a2e5d6b2cb017814f69e277a44d57f35186c29c7f6f58d5e4f6ce244512f1205af42231c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.33, @aws-sdk/credential-provider-http@npm:^3.972.46":
version: 3.972.46
resolution: "@aws-sdk/credential-provider-http@npm:3.972.46"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/fetch-http-handler": "npm:^5.4.6"
"@smithy/node-http-handler": "npm:^4.7.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/5f640ea68eecc6dd506825d3f985e3ea8837588c1a4023236936433f05a08f6742346f0430c38c3e68ca8c1da558a48b7ef1112879df072651218943fa8cb5b3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.35, @aws-sdk/credential-provider-ini@npm:^3.972.50":
version: 3.972.50
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.50"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/credential-provider-env": "npm:^3.972.44"
"@aws-sdk/credential-provider-http": "npm:^3.972.46"
"@aws-sdk/credential-provider-login": "npm:^3.972.49"
"@aws-sdk/credential-provider-process": "npm:^3.972.44"
"@aws-sdk/credential-provider-sso": "npm:^3.972.49"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.49"
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/credential-provider-imds": "npm:^4.3.7"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/bf603644f2c6e8855c78077bc42c9561357bdf30d377ef4aff4fb9deb19c5c0472eb93e697609951c07e5e0efd8d209b16012c583e8edbda8813e5bc46400d08
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.35, @aws-sdk/credential-provider-login@npm:^3.972.49":
version: 3.972.49
resolution: "@aws-sdk/credential-provider-login@npm:3.972.49"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/16f608a081e2b205c021006d5af8369f132838d7b612328d6e7acfc656235882d8824c2db1ee9b4a4e39fe3443796433a96a566de1f8f3353147c9b691a6ce21
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.36":
version: 3.972.52
resolution: "@aws-sdk/credential-provider-node@npm:3.972.52"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.44"
"@aws-sdk/credential-provider-http": "npm:^3.972.46"
"@aws-sdk/credential-provider-ini": "npm:^3.972.50"
"@aws-sdk/credential-provider-process": "npm:^3.972.44"
"@aws-sdk/credential-provider-sso": "npm:^3.972.49"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.49"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/credential-provider-imds": "npm:^4.3.7"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/ad55fd9ba84adbecd314758da56433d6e78f352985758523763e3b8ca5d9191c4973b161d91dc738bf7e72ea5cacecc8b0d4797b167d9d3f82077523dbb14a94
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.31, @aws-sdk/credential-provider-process@npm:^3.972.44":
version: 3.972.44
resolution: "@aws-sdk/credential-provider-process@npm:3.972.44"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/511988e18693dc0c269b2d65cc6c47890e058b40a1fe82580ef62e9aa15ff0cd88582ca6aafd307d5b71d39cc0a66e703042e56cab203fd09ec8e89e3d6a58f3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.35, @aws-sdk/credential-provider-sso@npm:^3.972.49":
version: 3.972.49
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.49"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/token-providers": "npm:3.1063.0"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/bb42b2bd0f522f3e3578305617322cd35e865bfb86e00542ace0bbe83e661f11a60fb96876b6a35963c25649e80b8ba362950302f74b4a511c0a7d98e2d26e37
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.35, @aws-sdk/credential-provider-web-identity@npm:^3.972.49":
version: 3.972.49
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.49"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/acadb5afa6ea9019a501541031bce0e5d951866f56818cb926741e7205ec9ed899a5413f4fe8fb41ec1f8dff7f971826b9d95ee11d5a05d6c2b3d70275b9c073
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.1036.0":
version: 3.1036.0
resolution: "@aws-sdk/credential-providers@npm:3.1036.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.1036.0"
"@aws-sdk/core": "npm:^3.974.5"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.28"
"@aws-sdk/credential-provider-env": "npm:^3.972.31"
"@aws-sdk/credential-provider-http": "npm:^3.972.33"
"@aws-sdk/credential-provider-ini": "npm:^3.972.35"
"@aws-sdk/credential-provider-login": "npm:^3.972.35"
"@aws-sdk/credential-provider-node": "npm:^3.972.36"
"@aws-sdk/credential-provider-process": "npm:^3.972.31"
"@aws-sdk/credential-provider-sso": "npm:^3.972.35"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.35"
"@aws-sdk/nested-clients": "npm:^3.997.3"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d4690b5f48786d3edd4dea825cc56144326c38456c3637e1b3566a8cbb9883d9ae56cb77830007e6c4154eb35ac4ac2361f69eb7ee5d672ffd35f73fe76b1ea4
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.10":
version: 3.972.21
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.21"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.48"
tslib: "npm:^2.6.2"
checksum: 10c0/6de99404121f616580ebc968d2942b3c5785ad6fc6e74be76f7635885e6dbebc31394438c0c33ba7dcc4010b6ee1319c9bdaf128df331917b4e2195ec74246c2
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.10":
version: 3.972.17
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.17"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.48"
tslib: "npm:^2.6.2"
checksum: 10c0/2bfe8b52d8eaeae48ea3c8dd5c520ff1a2e96595b0ddd8895337c56c32cef783a791f3ef538bd9695e44a27d8ff4e7ae8104b689a0c7ac31ab8d212a01aa4ca2
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.974.13":
version: 3.974.27
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.27"
dependencies:
"@aws-sdk/checksums": "npm:^3.1000.2"
tslib: "npm:^2.6.2"
checksum: 10c0/510df513d8a8c4fcbc7da39c015253c1a712fef419c6e846c6679c7f4b4b8d6565486e4819096ba5bf7285428d29e504eae799d465fc0c468406ea796238369c
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.10":
version: 3.972.19
resolution: "@aws-sdk/middleware-host-header@npm:3.972.19"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/93568b7bc4b3b59c183614c2becc1b9f5c9741f5fae06f4f47eebaddba183e3cbede57d5f4b8e8fff89982481673ef146723b37a077fa734c800e9ee074996fb
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.10":
version: 3.972.14
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.14"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.48"
tslib: "npm:^2.6.2"
checksum: 10c0/f1ff2998d692b47622b239700f198448087f757003f30f36bfaec60a8d7962d16e5560d5b432a0a2ef581bbf4f7097d9be8392467b03288c6b05a43571ee03f7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.10":
version: 3.972.18
resolution: "@aws-sdk/middleware-logger@npm:3.972.18"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/b7e2a4c76326ea79e9135dda228c68a8d6803856c31d87df856b5e4cdf230d6a41307aac3ca0139778eca99c2b2d96e8246f4644676abf2e341c531726d0722d
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.11":
version: 3.972.20
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.20"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/e3e927b9eae412c0a7cf9c6ee03f84115696eecd69211c2f0a660315bcb3e259e00fb1a962418357e7bf4e60af10ca99ab0ee02c1248999170832f0176e12371
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:^3.972.22":
version: 3.972.32
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.32"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/signature-v4": "npm:^5.4.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/bcc85145d5893179eb94b1dec24177b3b5da285ecf85d5f4f9df0e92b7adcfae6a7c98db8f4d3cf82de65ce7e756aa818184ecb45dd127405bd6daf450a5f03a
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:^3.972.22":
version: 3.972.32
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.972.32"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/signature-v4": "npm:^5.4.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/459721ab52540dcdecba1b6cc2ec3bae326d420c0c7ff4c164e1e9b8113572a5d6bc3a6b2ff11b6ca26c5c2f297d1a6175cc3b52f73fc3480e7bd27bf495cb5d
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.34, @aws-sdk/middleware-sdk-s3@npm:^3.972.48":
version: 3.972.48
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.48"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.32"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/abd8bf5555fd6660b919fbc3926f26188236f3f30f5217d97fc0a3e4091bef80991fb1599c1a5d4dac7c3558f5eb8747a81d4319d7339a33d0c9acc000f226c8
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.10":
version: 3.972.14
resolution: "@aws-sdk/middleware-ssec@npm:3.972.14"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.48"
tslib: "npm:^2.6.2"
checksum: 10c0/b055f83f89745bbd9a464e6c04c85a1c3bc377ed9ea6ef86a090c2bd68d6ef87d207ede6378ff2d1fc37313e4fb5106ac236e1b962c385fb40a25835d09f1554
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.35":
version: 3.972.48
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.48"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/d2bb633234ba5724477da6d3db2ee66ef2b8b6314b8b2deef21e71f4e36a6ae955bcf93bf22964f95fb76cdb16d7079524ac22718e09d8695ae0f88b58939da8
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.997.17, @aws-sdk/nested-clients@npm:^3.997.3":
version: 3.997.17
resolution: "@aws-sdk/nested-clients@npm:3.997.17"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.32"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/fetch-http-handler": "npm:^5.4.6"
"@smithy/node-http-handler": "npm:^4.7.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/9c53068234dbbe5549688c753edf5c06d55507293f10eeb09f419362703897acf902df4c24420bc9ce031d1ae89ee3d57aafa677aa84678716bd8676728e6ed9
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.13":
version: 3.972.22
resolution: "@aws-sdk/region-config-resolver@npm:3.972.22"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/9f522ef125cc8600857d1f7aadb017e8641aa95897c626fe8139fd8d58ff2a3beb43c29df00d514a12550c5dd1d63dea04597e204f725353ad6a7b45fcd5c02b
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:^3.996.22, @aws-sdk/signature-v4-multi-region@npm:^3.996.32":
version: 3.996.32
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.32"
dependencies:
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/signature-v4": "npm:^5.4.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/5cec857cbf7ce27f6c3c9ee69875cbea3622e017c506826fd60a3e61be090eee97140167e3d9fd4fd51b45a7f7460cf85d084071b38a462c6247171a86d550c2
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1063.0":
version: 3.1063.0
resolution: "@aws-sdk/token-providers@npm:3.1063.0"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@aws-sdk/nested-clients": "npm:^3.997.17"
"@aws-sdk/types": "npm:^3.973.11"
"@smithy/core": "npm:^3.24.6"
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/f0bcb4975af119dce10c5f2b9c66c56c85489fb547c8e00ecceb7faf103b12e38825131d1ebdd3b1c1247da8df2b6148e4d5eaabdb1fa959a5c181246e44dd4b
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.11, @aws-sdk/types@npm:^3.973.8":
version: 3.973.11
resolution: "@aws-sdk/types@npm:3.973.11"
dependencies:
"@smithy/types": "npm:^4.14.3"
tslib: "npm:^2.6.2"
checksum: 10c0/d245d21ebcc59c89fa6a4a67f668278c56b9ce78330805ae456f033e3c85582df57e44c29e47a63e3d940f512a7d24a4077666218ae6419c55bef10abe36a9ed
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.8":
version: 3.996.17
resolution: "@aws-sdk/util-endpoints@npm:3.996.17"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
"@smithy/core": "npm:^3.24.6"
tslib: "npm:^2.6.2"
checksum: 10c0/76f917a2129f832deec0c2bc6fe5823bf3b575171644a804190b578d98ddba02866f754a6f38478af5aeabbc54148f38b381c4d1704abfe760e0b03a518e147f
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.6
resolution: "@aws-sdk/util-locate-window@npm:3.965.6"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4143d5baeeba37fdc383f7aaf7d46250196087143a8907e81abd5bad0387fb563c57c5dd1487ea07aba825d980387c02a835c65a6544ad9070223e94f7c5e03c
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.10":
version: 3.972.19
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.19"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/a270cc21ba3886f0294f6622661c509164dca7169b2938d90273ca2d4b47d8e533bc7c363389b8d2a517ab6915c828f2b2694a9c92bfcfd1bf4a9ba3112ff324
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.21":
version: 3.973.34
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.34"
dependencies:
"@aws-sdk/core": "npm:^3.974.18"
tslib: "npm:^2.6.2"
checksum: 10c0/5ccbc35a80781a61f272192385bfcebb64560797f6400e6c35601571d61ba43b3495f77689b0f111f737171baef6bb5d4374706d0dd560e6389e8780e1c7d495
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.28":
version: 3.972.28
resolution: "@aws-sdk/xml-builder@npm:3.972.28"
dependencies:
"@smithy/types": "npm:^4.14.3"
fast-xml-parser: "npm:5.7.3"
tslib: "npm:^2.6.2"
checksum: 10c0/b17632cee8beb09284f3f649707e48b804aa327acd888bd2d9560ad818cbdfcede4f73ec2077bec9255cf3f5a813dc14d6686c8ba0655c04aa1368c7c070b8e4
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.4
resolution: "@aws/lambda-invoke-store@npm:0.2.4"
checksum: 10c0/29d874d7c1a2d971e0c02980594204f89cda718f215f2fc52b6c56eacbdad1fa5f6ce1b358e5811f5cd35d04c76299a67a8aff95318446af2bdfb4910f213e13
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.29.7"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/169fc2080169a40c1760155eaaaf739bcb882df0bec76a83adbda5493645bc17270a3434b8848c494b1933e96fe1d147370001e3cda09a39f43ae30f08ef2069
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.14.9":
version: 7.29.7
resolution: "@babel/runtime-corejs3@npm:7.29.7"
dependencies:
core-js-pure: "npm:^3.48.0"
checksum: 10c0/3ea24ca1b0d92a3421afab2078e1ff21ea8a8d872f9bcd56b21145eec44f123b4e629e89e47bae2301fa12e22411150dc42a71fd29ec687b97001069867cfd6d
languageName: node
linkType: hard
"@baszalmstra/rattler@npm:0.2.1":
version: 0.2.1
resolution: "@baszalmstra/rattler@npm:0.2.1"
checksum: 10c0/15024f80f9bdd45a02f6006eda758d0282f5895f67aaa5d1d5a60eb27a62e5e3446225afe5dbb3638ac1191f9dbb3578f6eabd664736e66a31f3488a1ff3fe2e
languageName: node
linkType: hard
"@breejs/later@npm:4.2.0":
version: 4.2.0
resolution: "@breejs/later@npm:4.2.0"
checksum: 10c0/d79c5d35a5951f674644101bd19c93e7964333c5bd97b3eb3a2bc658ee12ca28a343b1f86221deadefbc57328eccafe421424ac5128b5f3eab30169e6b42d1f0
languageName: node
linkType: hard
"@cdktf/hcl2json@npm:0.21.0":
version: 0.21.0
resolution: "@cdktf/hcl2json@npm:0.21.0"
dependencies:
fs-extra: "npm:11.3.0"
checksum: 10c0/4cba4597c0ede0d18fe95201fb9c883eff1f502a02ba1cd56397ee4b33047fa00f229ad62e14e0822ff6a4256b473c54429494388e1986fc024e5419e1fe4e94
languageName: node
linkType: hard
"@gwhitney/detect-indent@npm:7.0.1":
version: 7.0.1
resolution: "@gwhitney/detect-indent@npm:7.0.1"
checksum: 10c0/d8dc05fe52db3a4e54745c6422ae2a29bbf703e4a08271c396055c6e1550b6696598dccf4645d7fbd3d3295c73ec9f7a354dbfa6087193e092fd8316ac5e8deb
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@keyv/serialize@npm:^1.1.1":
version: 1.1.1
resolution: "@keyv/serialize@npm:1.1.1"
checksum: 10c0/b0008cae4a54400c3abf587b8cc2474c6f528ee58969ce6cf9cb07a04006f80c73c85971d6be6544408318a2bc40108236a19a82aea0a6de95aae49533317374
languageName: node
linkType: hard
"@kwsites/file-exists@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/file-exists@npm:1.1.1"
dependencies:
debug: "npm:^4.1.1"
checksum: 10c0/39e693239a72ccd8408bb618a0200e4a8d61682057ca7ae2c87668d7e69196e8d7e2c9cde73db6b23b3b0230169a15e5f1bfe086539f4be43e767b2db68e8ee4
languageName: node
linkType: hard
"@kwsites/promise-deferred@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/promise-deferred@npm:1.1.1"
checksum: 10c0/ef1ad3f1f50991e3bed352b175986d8b4bc684521698514a2ed63c1d1fc9848843da4f2bc2df961c9b148c94e1c34bf33f0da8a90ba2234e452481f2cc9937b1