-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn.lock
17130 lines (15689 loc) · 632 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
"@alcalzone/ansi-tokenize@npm:^0.1.3":
version: 0.1.3
resolution: "@alcalzone/ansi-tokenize@npm:0.1.3"
dependencies:
ansi-styles: "npm:^6.2.1"
is-fullwidth-code-point: "npm:^4.0.0"
checksum: 10c0/b88c5708271bb64ce132fc80dac8d5b87fc1699bf3abfdf10ecae40dbb56ab82460818f5746ecdd9870a00be9854e039d5cb3a121b808d0ff6f5bc7d0146cb38
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.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-cdk/asset-awscli-v1@npm:^2.2.208":
version: 2.2.215
resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.215"
checksum: 10c0/aa91e84d5fd2ada83a5b8234ff964e157b0e72a74d235c5465b5f104b8319ec290a3d36caf77ce1a8ce252cc001c86227ed7d88d7ace6c612bd4135655e3846f
languageName: node
linkType: hard
"@aws-cdk/asset-kubectl-v20@npm:^2.1.3":
version: 2.1.3
resolution: "@aws-cdk/asset-kubectl-v20@npm:2.1.3"
checksum: 10c0/12be13eb04482055b9b00a65280e143b8459ba11b4cb168a344fdb227a672d2662d05fa28436975898fad2ea83e52b5a38eea6f88df636d564b43c37d0d63050
languageName: node
linkType: hard
"@aws-cdk/asset-node-proxy-agent-v6@npm:^2.1.0":
version: 2.1.0
resolution: "@aws-cdk/asset-node-proxy-agent-v6@npm:2.1.0"
checksum: 10c0/1ac7bccf82afee69c05241a5ad66345fbd468678ce633bb43c5921c7241a3186231b3b65f9ac6b9924933349c826a9470c79a3ddf14a03fbfce43f14c4d957f2
languageName: node
linkType: hard
"@aws-cdk/aws-apprunner-alpha@npm:2.171.1-alpha.0":
version: 2.171.1-alpha.0
resolution: "@aws-cdk/aws-apprunner-alpha@npm:2.171.1-alpha.0"
peerDependencies:
aws-cdk-lib: ^2.171.1
constructs: ^10.0.0
checksum: 10c0/6d126a1de44aa37bc6127d2e335b1ef3923f881ae0ea6e4eccf1365f292e415d41e671459ba80bbcef2720f6393fe8532ef9a9d0188b44aa6be83b42bc66d0ed
languageName: node
linkType: hard
"@aws-cdk/aws-lambda-python-alpha@npm:2.171.1-alpha.0":
version: 2.171.1-alpha.0
resolution: "@aws-cdk/aws-lambda-python-alpha@npm:2.171.1-alpha.0"
peerDependencies:
aws-cdk-lib: ^2.171.1
constructs: ^10.0.0
checksum: 10c0/139e9c2773cc7288b837451a18f6ef86905335018cb24e4bfbd5d69415e631726392ca5c9e761bcbe11d90179c319a6a2a191902d9c90f62aa402d993a90252a
languageName: node
linkType: hard
"@aws-cdk/aws-service-spec@npm:^0.1.34":
version: 0.1.38
resolution: "@aws-cdk/aws-service-spec@npm:0.1.38"
dependencies:
"@aws-cdk/service-spec-types": "npm:^0.0.105"
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/6cf2161cd8d057e2369c79fb3438399f5506e5c70bedf3f74ef2fc5546ccc1c4807050a935ea8984865e466cd2da24a90e8bdec0e5eb05852c4c5471517feab8
languageName: node
linkType: hard
"@aws-cdk/cloud-assembly-schema@npm:38.0.1, @aws-cdk/cloud-assembly-schema@npm:^38.0.0, @aws-cdk/cloud-assembly-schema@npm:^38.0.1":
version: 38.0.1
resolution: "@aws-cdk/cloud-assembly-schema@npm:38.0.1"
dependencies:
jsonschema: "npm:^1.4.1"
semver: "npm:^7.6.3"
checksum: 10c0/5cfc455f586daad26788f739d272c08b9e2291ed50ac48d174769ef95d0c7ef623206480f78be86e36ee2d4939bd57327b1b6c407974eaa417848483430c622d
languageName: node
linkType: hard
"@aws-cdk/cloudformation-diff@npm:2.171.1":
version: 2.171.1
resolution: "@aws-cdk/cloudformation-diff@npm:2.171.1"
dependencies:
"@aws-cdk/aws-service-spec": "npm:^0.1.34"
"@aws-cdk/service-spec-types": "npm:^0.0.101"
chalk: "npm:^4"
diff: "npm:^5.2.0"
fast-deep-equal: "npm:^3.1.3"
string-width: "npm:^4.2.3"
table: "npm:^6.8.2"
checksum: 10c0/b5c25dcf151e93d232830f5f1fb65463e414f5c9b9a1fd8e3792fc2a49df2841824c543324dcdbfd3392e3fff852f83f212f3e3559fe1743f50595fb3a890bde
languageName: node
linkType: hard
"@aws-cdk/cx-api@npm:2.171.1":
version: 2.171.1
resolution: "@aws-cdk/cx-api@npm:2.171.1"
dependencies:
semver: "npm:^7.6.3"
peerDependencies:
"@aws-cdk/cloud-assembly-schema": ^38.0.0
checksum: 10c0/bdaac333a8476c371980f577573f02effe121545bf54e7ef256d979e8fca0aeac8d1f0cf281c83f91b9040703c47094217dce1e1c703290600134c5b04226792
languageName: node
linkType: hard
"@aws-cdk/cx-api@npm:^2.173.1":
version: 2.173.1
resolution: "@aws-cdk/cx-api@npm:2.173.1"
dependencies:
semver: "npm:^7.6.3"
peerDependencies:
"@aws-cdk/cloud-assembly-schema": ^38.0.0
checksum: 10c0/8bf8c27b5c7dc493d1ade624390d45f4461620bafeb13409c6c1f4c1e35da3edf3b56cbe0b0eb548504de12e797a86141f4884c2e90d6054def5aa6647d2da85
languageName: node
linkType: hard
"@aws-cdk/region-info@npm:2.171.1":
version: 2.171.1
resolution: "@aws-cdk/region-info@npm:2.171.1"
checksum: 10c0/65ae593144570c1c874a3209fc294ec0db1d6cc252d3a262c7524f1b2385598fdc7d25d0feb8bd4a185515d07bf6a739a162b99ae23e4ec3119c08209d025387
languageName: node
linkType: hard
"@aws-cdk/service-spec-types@npm:^0.0.101":
version: 0.0.101
resolution: "@aws-cdk/service-spec-types@npm:0.0.101"
dependencies:
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/0329e1aedc2d26388f1738ab25a1c59925d565a8a404b259f17234faca564e5ff7948dd4eca4b2a500a081881582211323ce96a4a588c4af3d34d19603f493ed
languageName: node
linkType: hard
"@aws-cdk/service-spec-types@npm:^0.0.105":
version: 0.0.105
resolution: "@aws-cdk/service-spec-types@npm:0.0.105"
dependencies:
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/b218063be38bce0688880e9c0740272bcbbba50184cd764b2af1d51b60819241eb2665f3dc6d9754714f9a97226579b75fc6ce39ba66789d75b84b5af7acc1e4
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
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:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/a5c7ec12ec23fd44c93971234176e0f3bda33d1d5ff3abe25a538f46d8a0baa312eefd179ac3f9bcca1c2d31886e3a36d1e2349b6989c59c3ea6853161095229
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/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/26b51cba7f4f0412531205661d21e4a4f56cd87dbcfeb9844c4758b23029b83ff9815bd5207abbe98b62803948625d559cf177f6f6bce3af6654a6e05e0e1e31
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:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
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:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
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:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
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-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-sdk/client-appsync@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-appsync@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6d38b683e89ddca0f6fa4fa67d2381389c4a627901f82d2e8c211da4509a6346cc639663a80ce880f7f6c5f04ed30f92bd5d75c6db9b36235780e0ebcb69f900
languageName: node
linkType: hard
"@aws-sdk/client-cloudformation@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-cloudformation@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/9e657e985ada73b0b5ecfae229a9927d5f9699ee7d3d095d060cd6e2dd2d759b95e14fc4fd9361a0c1c5ac9156bb05c3c9291eacba272f345e75aabc548e7c15
languageName: node
linkType: hard
"@aws-sdk/client-cloudformation@npm:^3.454.0":
version: 3.596.0
resolution: "@aws-sdk/client-cloudformation@npm:3.596.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sso-oidc": "npm:3.596.0"
"@aws-sdk/client-sts": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^3.0.0"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/f8d24ee11733b4afada9def4afe75e134b07a1eb54e8f3a1bbe10bcc8e1807b6aec5efb976330d2f53502162a2dd5c6332cda363854b9eff599c05da3dd9a764
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch-logs@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.10"
"@smithy/eventstream-serde-node": "npm:^3.0.12"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/4cbacf5ff1c101a6124a2f877eae42c5c35ddc83602418ed41aec08d115aa65370ce234d4f35d91af5fb00fe2792bc1a530a75018a1c63d1f23caad7d7c6258f
languageName: node
linkType: hard
"@aws-sdk/client-codebuild@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-codebuild@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/579e905062844a67de2a370e2c5a2745b6352fbefc84cb399c47be9c0bc844ed525663506ae2fa3e9220616fc7ec68acf2fd580165b22cd966fccc5a025632cd
languageName: node
linkType: hard
"@aws-sdk/client-codebuild@npm:^3.658.0":
version: 3.658.0
resolution: "@aws-sdk/client-codebuild@npm:3.658.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.658.0"
"@aws-sdk/client-sts": "npm:3.658.0"
"@aws-sdk/core": "npm:3.658.0"
"@aws-sdk/credential-provider-node": "npm:3.658.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cb9df6c17c614ce845c66146169c7d78ea4e083c84ea7233bc9b517f3fd82100febc8ea4db50fcc2888a7cfc1a9ac50a91dfef089d18810afbf290b80bdc3297
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.596.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sso-oidc": "npm:3.596.0"
"@aws-sdk/client-sts": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^3.0.0"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/35d2e1f43e0171b9be4056f5c86bacc8f63955455928d485555bc8484c0f7cb400625c748161a9e0ae61061f73a80782afffa75e299ae9c4dcc04fbe3ed60d40
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aff35ec47c694407cd64737c78ee8b8d7027ff7fc3127309db541d3eb9bab71ad4b49a05f4bf38491e2febca4b8132678872e9f0557155d06a4b26a1bc1734c8
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.713.0":
version: 3.713.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.713.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.713.0"
"@aws-sdk/client-sts": "npm:3.713.0"
"@aws-sdk/core": "npm:3.713.0"
"@aws-sdk/credential-provider-node": "npm:3.713.0"
"@aws-sdk/middleware-host-header": "npm:3.713.0"
"@aws-sdk/middleware-logger": "npm:3.713.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.713.0"
"@aws-sdk/middleware-user-agent": "npm:3.713.0"
"@aws-sdk/region-config-resolver": "npm:3.713.0"
"@aws-sdk/types": "npm:3.713.0"
"@aws-sdk/util-endpoints": "npm:3.713.0"
"@aws-sdk/util-user-agent-browser": "npm:3.713.0"
"@aws-sdk/util-user-agent-node": "npm:3.713.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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/4aa2c4df95d4ff000e62aca2fb327b5217a2d7a6922223d0b0a134129bb89e389fe26b4f5c3f90a37f19718817f36a7fd7a7aece7941c874fa690eb43e008784
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-ec2@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/da727ad9a83788a411fb04c5538c01359497a6668f200a55e30087dcac3005ef923213342a47c134f77c97bd6b77cd4ea862170c7c22131cababe2c24c9d6bb7
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-ecr@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10c0/2baa287019d591231528c870a144ab76b53efe408285e03509c80a3910692a3a360922de65a8988dbcac57e55fbd4462bf127eab4e0d8cfda917c42702dfa8a8
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:^3.712.0":
version: 3.713.0
resolution: "@aws-sdk/client-ecr@npm:3.713.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.713.0"
"@aws-sdk/client-sts": "npm:3.713.0"
"@aws-sdk/core": "npm:3.713.0"
"@aws-sdk/credential-provider-node": "npm:3.713.0"
"@aws-sdk/middleware-host-header": "npm:3.713.0"
"@aws-sdk/middleware-logger": "npm:3.713.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.713.0"
"@aws-sdk/middleware-user-agent": "npm:3.713.0"
"@aws-sdk/region-config-resolver": "npm:3.713.0"
"@aws-sdk/types": "npm:3.713.0"
"@aws-sdk/util-endpoints": "npm:3.713.0"
"@aws-sdk/util-user-agent-browser": "npm:3.713.0"
"@aws-sdk/util-user-agent-node": "npm:3.713.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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/db9b72b3f22919ba3195e67c1ae806426bd2ffa9ae75c0fef62db0cf4e07afbea49b188e2a909bad60942ac4423402227b305707cd8459bea143076c553bd283
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-ecs@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/cc63f0047a8aa0b5390c8c30545dd9f9de5999044302aff3230eedd7e15b782180cbdaeec26a64fc93c5084cc93e7a9f133458546853f85f15159314ca39c517
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:^3.454.0":
version: 3.596.0
resolution: "@aws-sdk/client-ecs@npm:3.596.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sso-oidc": "npm:3.596.0"
"@aws-sdk/client-sts": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"