forked from yamadashy/tech-blog-rss-feed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
13894 lines (12531 loc) · 485 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: 10
"@11ty/dependency-tree@npm:^2.0.1":
version: 2.0.1
resolution: "@11ty/dependency-tree@npm:2.0.1"
checksum: 10/f10df6f7fe71fd39ee6820146b450440bd0a03d7abb065e3486de6aa3e9cb341a480b912f650b360bf4a4383f87197f169a550c418e36efd359eaef17e97ea74
languageName: node
linkType: hard
"@11ty/eleventy-dev-server@npm:^1.0.4":
version: 1.0.4
resolution: "@11ty/eleventy-dev-server@npm:1.0.4"
dependencies:
"@11ty/eleventy-utils": "npm:^1.0.1"
chokidar: "npm:^3.5.3"
debug: "npm:^4.3.4"
dev-ip: "npm:^1.0.1"
finalhandler: "npm:^1.2.0"
mime: "npm:^3.0.0"
minimist: "npm:^1.2.8"
morphdom: "npm:^2.7.0"
please-upgrade-node: "npm:^3.2.0"
ssri: "npm:^8.0.1"
ws: "npm:^8.13.0"
bin:
eleventy-dev-server: cmd.js
checksum: 10/ff8dffcbd0eb2dfc3213cede12d09ddeaae39b2db68ac67685b55e9f0f2e3824e5065279ee0fd52b3190bf552219027fdac051d450364f0fefd6f6cc2ad9a194
languageName: node
linkType: hard
"@11ty/eleventy-fetch@npm:^4.0.0":
version: 4.0.1
resolution: "@11ty/eleventy-fetch@npm:4.0.1"
dependencies:
debug: "npm:^4.3.4"
flat-cache: "npm:^3.0.4"
node-fetch: "npm:^2.6.7"
p-queue: "npm:^6.6.2"
checksum: 10/ef2f1879cc9cf5aa2fea1767404f367640c006577e8a7a97b8d6d592c457d00a06f7798dbb384b720e7954b12bd4747a9e3f0c0b7868eddd38ce70f05248f854
languageName: node
linkType: hard
"@11ty/eleventy-img@npm:^4.0.2":
version: 4.0.2
resolution: "@11ty/eleventy-img@npm:4.0.2"
dependencies:
"@11ty/eleventy-fetch": "npm:^4.0.0"
brotli-size: "npm:^4.0.0"
debug: "npm:^4.3.4"
entities: "npm:^4.5.0"
image-size: "npm:^1.1.1"
p-queue: "npm:^6.6.2"
sharp: "npm:^0.33.2"
checksum: 10/49e7ce89f8fcef99ad215df1de9866e3ccf75ee6be9019be4c7f7d3677d9a3ba806807a18352dc5ecad1e79caf38a47207af526425774f8ff0a7c8d66145b4fa
languageName: node
linkType: hard
"@11ty/eleventy-utils@npm:^1.0.1":
version: 1.0.2
resolution: "@11ty/eleventy-utils@npm:1.0.2"
dependencies:
normalize-path: "npm:^3.0.0"
checksum: 10/a7602dcf92197259d7dad5a5fd01cc425e8fe47e003f27404020eeeb4cabb641b036eb7d04b323dc9cd25382f92d4ab314de785e7c262e4627074d5797e27513
languageName: node
linkType: hard
"@11ty/eleventy@npm:^2.0.1":
version: 2.0.1
resolution: "@11ty/eleventy@npm:2.0.1"
dependencies:
"@11ty/dependency-tree": "npm:^2.0.1"
"@11ty/eleventy-dev-server": "npm:^1.0.4"
"@11ty/eleventy-utils": "npm:^1.0.1"
"@11ty/lodash-custom": "npm:^4.17.21"
"@iarna/toml": "npm:^2.2.5"
"@sindresorhus/slugify": "npm:^1.1.2"
bcp-47-normalize: "npm:^1.1.1"
chokidar: "npm:^3.5.3"
cross-spawn: "npm:^7.0.3"
debug: "npm:^4.3.4"
dependency-graph: "npm:^0.11.0"
ejs: "npm:^3.1.9"
fast-glob: "npm:^3.2.12"
graceful-fs: "npm:^4.2.11"
gray-matter: "npm:^4.0.3"
hamljs: "npm:^0.6.2"
handlebars: "npm:^4.7.7"
is-glob: "npm:^4.0.3"
iso-639-1: "npm:^2.1.15"
kleur: "npm:^4.1.5"
liquidjs: "npm:^10.7.0"
luxon: "npm:^3.3.0"
markdown-it: "npm:^13.0.1"
micromatch: "npm:^4.0.5"
minimist: "npm:^1.2.8"
moo: "npm:^0.5.2"
multimatch: "npm:^5.0.0"
mustache: "npm:^4.2.0"
normalize-path: "npm:^3.0.0"
nunjucks: "npm:^3.2.3"
path-to-regexp: "npm:^6.2.1"
please-upgrade-node: "npm:^3.2.0"
posthtml: "npm:^0.16.6"
posthtml-urls: "npm:^1.0.0"
pug: "npm:^3.0.2"
recursive-copy: "npm:^2.0.14"
semver: "npm:^7.3.8"
slugify: "npm:^1.6.6"
bin:
eleventy: cmd.js
checksum: 10/560655c9f955c2597191c7dcc761b846b7b44bd5494a2fdfb58971841ff81a37ac3404cdbce49ea74b72f32f509982bf366e31e455f3112ca2671516fe79a709
languageName: node
linkType: hard
"@11ty/lodash-custom@npm:^4.17.21":
version: 4.17.21
resolution: "@11ty/lodash-custom@npm:4.17.21"
checksum: 10/1b4658f2054757075ede5fd364613516513295c2f0d7112afb78133eb79c922310844196630046aa0d3687298f4d6040cdd043883511c368cbc7d61f4619fe4c
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@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: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10/14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
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: 10/672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
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: 10/3e604ad7a8d3fb10e5fe11597d593d0ae8e1d6dc06a06b8d882d5732a6e181f6a77fd4f92fb3ae9002a2007121d49e40bc6b78d83af62d36deb1b457b7f1d977
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: 10/f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
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: 10/8c30fa1e427bf2c295077b007835b0dd9af6beb6250e0aa775cecd42a1f517ef211751e7e12c2423f39d9b1c6748b99eb7b73207eb69165abc696cc470d8659e
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: 10/4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
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: 10/f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
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: 10/8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
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: 10/92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-codecommit@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-codecommit@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/fea15d77293e52237ae6375c8082b7ec4a78bffe386269e19b59c756f360270a3ebdce64fa299ad5d3df4877deceb02decaaea74481cf67501ef92ec5137e967
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/9781c44b3d2dd746d2c9723109e3dcca1aec8bc58263edc86d61adf5362e537a2f51dd677403213ff166d40881554cc342da4b583d0809443ffe5ef6814dc071
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-ec2@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.556.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/c71a99bc591dc5a4b64c790339e6da111b3a7ad07fee3e8e87e5e211420b51e9aec47ef8f659d39b232398f77f63624b3913ec728b9e8e768ed797f52c175c5d
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-ecr@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/233a651278f78a3a20185d4f1d8b1ca25bb55d41c7f07a5f74151e2214a92ed61838f11cfcb3eec666bab50d8ec7160aa49a25a5b1edfd023a494f9de8887c1d
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-rds@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-rds": "npm:3.556.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/1dc598c343dc9aa26063fc7d0628fe87d4ac2e317fa9b4635bd59c2e5d6aeeabef353b893dc15ad90e8c68aea29e021fcf3f0ae69cc735b44552201e69d04f8c
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-s3@npm:3.565.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.535.0"
"@aws-sdk/middleware-expect-continue": "npm:3.535.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-location-constraint": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.556.0"
"@aws-sdk/middleware-signing": "npm:3.556.0"
"@aws-sdk/middleware-ssec": "npm:3.537.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.556.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@aws-sdk/xml-builder": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/eventstream-serde-browser": "npm:^2.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^2.2.0"
"@smithy/eventstream-serde-node": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-blob-browser": "npm:^2.2.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/hash-stream-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/md5-js": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-stream": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/94b9ef06478d868704b4cd98b61e501765859e16a8b341dd39427fb919af848d0b4b4dbc899f5178f84faa37e460583d9c2517566371c5599c56c907c8284a28
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/client-sso@npm:3.556.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/4457aa8d2de10f08ada12c338e2ac66dc8ef343524e8b332cbe7fd6d48561d2b915bb247346f164b89947fbdd1fcb31ff1e4d930bf657c1dbe684df32940f480
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/client-sts@npm:3.565.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.556.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.2"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/middleware-retry": "npm:^2.3.1"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.1"
"@smithy/util-defaults-mode-node": "npm:^2.3.1"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/a858330981d8a10f42f663580ab71815308ed8da41ba2deb9a540071bfbd10a66cfb7a2683cbd7fa5ed0603c9956bfe736cb7a8f01e2cf34aa27f232b98fb9bc
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/core@npm:3.556.0"
dependencies:
"@smithy/core": "npm:^1.4.2"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10/188add309efcdd6c319f59d4c709950639c559ff8d1a48eecc6287173bb647be2760226e8e3369d37f06b9bda6c15aa5a9f01d7289772e056890a0515598c919
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.565.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.565.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/4f40b0f6b611c54b20f33c50cdce5812b34f638bcad3be02e72ea24c53bb59b3c0c02976ee6041999a5fee1f070c0a1f89e61e582cf60079be057f3d50d769fb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-env@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a9ab16146a2ba6d5d4af901ebacbd4576effd42c90debc274a9e827bd0a958072b068dfab54e8c6735cc96de40196d84c90c2543692336cca0decef2a16f2fd2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.552.0":
version: 3.552.0
resolution: "@aws-sdk/credential-provider-http@npm:3.552.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-stream": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/b3d8437ee218fff92817f07205eafd764ed0768799a84bfe826e73966b57f4f90f6459fe3a14e20423c5b83d37f5d5e6c4abac87e8a6558b7042fd504656a931
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.565.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.565.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.565.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.565.0
checksum: 10/868d7780c321d7351f4394af4f0fef69f369caa818ebf8885bdb82dedff54939592b2bd20888e21ab18474ce7f058110c6a6e174fd270aa8c8eb35f73ea15a72
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-provider-node@npm:3.565.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.552.0"
"@aws-sdk/credential-provider-ini": "npm:3.565.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.565.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.565.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/c5e2c27323b2fbcc09921ab4d14acc60578a1f8cd19f46ed6123aa4cf871881f903eac264b461fa0fe499428ae8e502639741f6d6b40ed1f5ca805569388bdc9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-process@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/59260bcd5d42ee61269a3a3d9b2c6c9ab0b6af2b1d48826018e56d44014c3a85fceaf175f3855a24a5f3093ee367afea49a72a559bc7ceb30e7cc9be049c4b0a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.565.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.556.0"
"@aws-sdk/token-providers": "npm:3.565.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/1450aaf7802e33ce1c984a9e2bb4e2e6f56b5e40f7c639d83b853f2e1ec3590a4773a885c91cdcd184fbaedba9d313cfbd0a9a700abe21b9b27bb496aa4ebd50
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.565.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.565.0
checksum: 10/907e7fc1dd6c9be68d29b4a2a191ab46bf4aa22f954fb59f2202ff7223ae4aaa443a1aae88fa3cbbda9dab9701f86eb31a46daa5ad876b031d58753dbc6d1403
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.565.0":
version: 3.565.0
resolution: "@aws-sdk/credential-providers@npm:3.565.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.565.0"
"@aws-sdk/client-sso": "npm:3.556.0"
"@aws-sdk/client-sts": "npm:3.565.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.565.0"
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.552.0"
"@aws-sdk/credential-provider-ini": "npm:3.565.0"
"@aws-sdk/credential-provider-node": "npm:3.565.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.565.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.565.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/2719f4bf62135679f05cf58e74b67bb079acd2efd6a7501aeff8ebe65c85b27e012af6ab922fea10efb483b600cf98cecf25552515874f456eed5359162fea80
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/5a83cd69cce1c47ab3e02d1895fcd5e40e34fbde406f0f655e1901a0dac36b2f62dd7303350e49273bc313bf228400312d374376b193f048bde64d52be7476da
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/c7e5015459a55832d9e03eabe77c3546d62fa76e1369a67c612e6e7a82c37decd1ed66891005aebfb9240c99f7803fbfcd6e4926342aad8a435feaec11a5c422
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.535.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/is-array-buffer": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/a0b9cc3fd13c75f38643ea2530b0c62a90a85c0b1c174c009c569f138e7330de00b9af4aca5cc5e72b828b22a13f62eb030aed7e1fa55f06622c1d55687d5415
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-host-header@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a32cb45c88c8e2361ca4cfca8cd7dc84e743e39e3a161ac4d9aa6c0916b3f259f32c2c8d84cfb60971c4da69fe17b387df75d21903aab8c2c56586cbe025c91c
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/991aaa73a6c134816550722f3a2fc76504d29f78615425399e6feedac9e38a30757a6561f310bee49aa53bb8d73a26578270f6f21b4ecbdb2efddd9b4514bde1
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-logger@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/1edb993a1e020848be08904e07e7f8bc4925cece85c74d5d67f787e4fe3dcc80da558dd71c530e0910fb86313b9c3955cb4585d1ddbf47fcb85bf8024c735e3a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/cf231a98e8f85c4592ccdc8c3d6bff10951fea96c06978068ce6667c6d4c99f95f14b836996dac27c31848030f662f1600629cc63554c5c0d8b4242bba4c5bea
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.556.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-format-url": "npm:3.535.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/0213233fc909fd007e3aa4724436b1fdeba4f50fa6067287419150aea52f2a435cb5f8c165d1144609c84c41c0ed3049b7a887f69ecfa7abb14c79e64cfe64c6
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.556.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-format-url": "npm:3.535.0"
"@smithy/middleware-endpoint": "npm:^2.5.1"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/0d100270530fc00824299a1d33451e7dc4f2fddf938e52e157c963a4597951f8b53215a1c03ecf69501aa2e38782fb43588047bc9b4bd50809691715a41ae31a
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.556.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.3.0"
"@smithy/smithy-client": "npm:^2.5.1"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/88da1f909b7eb0092bd3e2a9f78c15072029ec295b8eec388f29b2dfb4b7368ecb7684dcb74a50d8e653b8eb0910fe2523146b909a1040c2e0ddcc041991d2f6
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/middleware-signing@npm:3.556.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/7761f05381f25a79308228fbfca8b2c91f2945d43dcc5cc468d7e6f3980cc72562ae36810cb5269e5ba9cf6724a5ae40a7206010d8e5ecd76426044149c4808a
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.537.0":
version: 3.537.0
resolution: "@aws-sdk/middleware-ssec@npm:3.537.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/ac2f3a436f5ca541041d18dbd908ce3b0cd68f7e899bbc84aa8559cb8ef12ba6003668cbddec988f57af61d5f02b4692f4986504670590e8b8c1ad944a3b8cd7
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/032a37e91682a7330e7553c1728c84528a16a1e4efb0d3a0823db49a5c56b64d0cf1a84b4863a5314fc4954d824a77786493f0d305b72305fabd75c4badd7697
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/region-config-resolver@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/a7a1ef6f85f1d05a03d8a132bd4a822c51ac0ba88799d3c3b340118b40c958dc412ed9c97a8945fce8b35ec1f31192003e638e419345054bc514943a9962eb72
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.556.0":
version: 3.556.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.556.0"