-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
4751 lines (4281 loc) · 169 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 8/ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
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/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/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/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-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/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/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-s3@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/client-s3@npm:3.535.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/client-sts": "npm:3.535.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.535.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.535.0"
"@aws-sdk/middleware-signing": "npm:3.535.0"
"@aws-sdk/middleware-ssec": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.535.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.535.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.0"
"@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.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@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.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@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: 10c0/c9d6eb61cfd40d0271d73efad3f8739fa67a9e07627f6365937154b86bd97773af2fe884f4c350fdba3c88612f17cf976ca3b50259c21530eb1062389b3e7910
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.535.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.535.0"
"@aws-sdk/core": "npm:3.535.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.535.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.535.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.0"
"@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.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@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.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@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"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.535.0
checksum: 10c0/800d96477b6bb475486b071d2f7e36c024ada3e0031dc556b1ccd2022738835a3259d591c346fa945353d6a8917eb821275d359b5831f1a196c941956ccb01df
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/client-sso@npm:3.535.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.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.535.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.535.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.0"
"@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.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@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.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@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: 10c0/bda2bab7640c561fb5986f90c197dbb7b36d252b712ad1ecf764ba7ab95abd15da6c2cb003b71b490cbd76e831e4faac787a59b0f79e18ba0aa5ec6b36bdae12
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/client-sts@npm:3.535.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.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.535.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.535.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.0"
"@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.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@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.0"
"@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.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@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"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.535.0
checksum: 10c0/d0c502ab79749837c456701b8c2dda72cbfb2bfa6988a644ba8ffa63f8a2882b7dd71f9bea6dca79a1675131b2f6c1198f3d972acbfbc2922bfa24973a079bfa
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/core@npm:3.535.0"
dependencies:
"@smithy/core": "npm:^1.4.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/025b73303d29d414441a460078d5bd975dcdf817a4d2c5858b9172a0992f0605da4d65a60283c309df442707bc1b7429d392e67e4164e76b220f48580d467846
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: 10c0/2d245d723fd3be302a173ac8e93948b7edc9af0f0698b95d8a205dfaa6446cb0fdfcfa1c16ca66f89baf289ba4a77b3bbdc05537d93ee3451715e47ab33b5031
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-http@npm:3.535.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.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-stream": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd51b5a8df548c7c3176acc6eb78113e0c51a1780f8463daa3a0fbd84a7ce2703660dd5fc941433b66e6f3f7e702f7f71eda8ed9b1c41f74ae131ece8d671ab9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.535.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.535.0"
"@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.535.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.535.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: 10c0/f97b02cf829ad95b4dba259fb14a6bff80c708beac1803e5e52b1c94e60cd030d28afe853380f08fda49fdd80017673394d07b6a31ea83f32203c006ebf74e70
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-node@npm:3.535.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.535.0"
"@aws-sdk/credential-provider-ini": "npm:3.535.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.535.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.535.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: 10c0/5161f577f974b4dcee4d5aea98a6ef1a351a59dd5a8e475a4131789a498e606f34c3f7a062d1a3068d38997d5fd484471f342fbfd90dbff4415fa040cd38e6f9
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: 10c0/096a78241c0e76c614ee69d2f7e0169d4314e4dd0a43805164faa6d3381d5112587e26066c55e1b7aee763520b04cfaea83ae674eb76580c4fff0f45912de02f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.535.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.535.0"
"@aws-sdk/token-providers": "npm:3.535.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: 10c0/dd90491c62eca0da70b0e7da094c250eb618918743dc5efcd58fc9f2cc4e414ecd680eb79542ce8425e5763d7aa3d7ff77c09888c656cd56d061812b55b61da8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.535.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.535.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: 10c0/1af1f421b72e0d748b5c24a5b7bd738d49a3e48d7125ac3410006add922063fc577a79fa478db45856c2ab32268d6995c55992d8418ac1f613f097c8c4a1d62e
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: 10c0/f19ef992d64642ea9cad78906dd58b5ca354f80003ae04c21d1b1357db7e16b05d04c0ac821ac5d0ed09ff80f42acb9165b5a8cd09e43bb99f1c5720de3c30b5
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: 10c0/a2236c5cfa69e557bdcb0eb56282921d9cde8e50f5c3896cc97a15f150565920d88b8be6d16dae8b563001bc4b8afea1e435f71c1b181fe3abda9bba04cfb30f
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: 10c0/5e07de340bffc50fb5450f700664d8b3abd6bb399395de962a353734a68a2f88420b9b2a8ebb9286016e71978f0c653ed93875eeb7898f477737f471fc002b3f
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: 10c0/8b26adc069da04c3e6d1f66cb5ebe505373657ba5b85578fc09bd607fb6b25ef4168478f8acacaa69ec3f045ef619f522fafba9844c11835d5933a3f95ade4ea
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: 10c0/de9536d0d4e787f2eb04c2f693c1ac1860a3d519b009bbc73f7dc81c431a5abcde0d5cbdd139ec1969a05fe690ebaf1c2271953f3e8985114b469ef5ee6890e2
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: 10c0/f0e01443203c30d8064d5a16968de20060cd4c0742a4eb2537443fe767135c08cda1a2d5a75db33c319b639d31c9340de9f128eefdf73bb50283e40569f68471
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: 10c0/3bbb86ba971d2b034b7dea415fc6c3fb0c1a879c8153841849e9b2bfd9edd5a78e29a299ceaf74829007d96550420246b795721ac7d8cfb244e59e5f9dee54b3
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-sdk-s3@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/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/baa0c7686e55be4fe7ff10d6c743d24b1b41609a5120807655b505636d5e57c338bd34326e5bfa951dfc2730cfc4e70cb0fa0cd11df3408d169112cd309aa023
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-signing@npm:3.535.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.2.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/95d6c97b8479815c1400555949732706e6fee66d2ccec57e56eed538008cddcd1382824a84c1ea662a4323727895b3f887723a36801f4068b3aad3dfe1a37343
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-ssec@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/85862da4210a335575fbce1f939bc147d896c5ce73738a66d7e268418fe6d6d1b50db1afec5a10d3b8779fdd97639ecc833873201daee1911cda8d240c9d393b
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9276df938a6438acfe861bcac545fae514a797ea438274de161449c511e01d6c60301f184b339f673778e404ef5ab8a26f9544d93b05330d10df2e91a5a18963
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: 10c0/08d76cfc54f2d9fffb8a2fd873e19b95564842b78a2a923260b3100117100054bb95f15f723c1f7268d10ffc61150109dca6b512ac629d125a000550ecfd0146
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.535.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4d7095e5adb118eeb7ad95c1cd9d62db5c3ef41e5d5d46d5775f94591333fb8982430a61ec92c1242b59cdaa422a66f111dab01e7309b049b97cf173ad4cd7e3
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/token-providers@npm:3.535.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.535.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: 10c0/ecc17ec3ab81f2649443f4e435557225bde28425aef6e9d0f5d3798299dad725c29c8603ebc625543a8c1ce443d12bdd21ba8d6878677a736b1babdad5c5c556
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/types@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1c8ed3a76b508287ee840a9c37f9df7a382459dfe4d46aa0cf90eddacdf32eae9c0e0d274a18956095e567234d0b07c81ff7d4fbeed3ca3c9caf52ccadcea409
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.468.0
resolution: "@aws-sdk/types@npm:3.468.0"
dependencies:
"@smithy/types": "npm:^2.7.0"
tslib: "npm:^2.5.0"
checksum: 10c0/c22f174f714d2e316d7dc58dde1d97c5402bfecb0d5d53d7ea3f2408af3a12b14ae8bbd60ea764b14f858709cf5ceef34f6f611ef9fd559e8cef692cc0666f5f
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-arn-parser@npm:3.535.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/0061dd01d95187826912903f7a08e5a6d377ce82fcfa91a5a6d1f4343bd51fb32d2cb942612e555f6b85a92e95d55873fce99daef43b2558243efdfe2b27d88a
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-endpoints@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-endpoints": "npm:^1.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd36c11e2f4374c224e45ebcf208277e0d8d89f5e4e09af1c64e6681e5042cf0ee981887eb45d34eeff782680a5ac6c2fe9d6a18ebe2cb1921f9d3c54180493d
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.201.0
resolution: "@aws-sdk/util-locate-window@npm:3.201.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 8/ef6f25ab873126b5ee37528f7d85323b4b5ad564f2a24df216029da65c865c4f5d86bce62f4b5752d8cb981b69295a74cdcbea827fa401551bdd1c5b4cdf4a23
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/347f92df14527a6a30baca22cec326ecae8109cdaa7c011b193275acd4a19e3dfe90194aa91629bb82aa62cf690b2bc2742117f78a8d0fb01570b6eac6cb87a7
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-node@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"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/144a92ca5745ed78159d05466698472d10e0529946bcba67cc350be03c2272be7a58c76caa5f8831bbc66438f635a5a10167182aab02be601648843c9c0347f9
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.188.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.188.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 8/dacd27164aa0835888434e080b67f04510e2281560540ff73496f2d0aa73b0b7f830ec08491b35c3a51bf6214615579182aff8727e151e54a74a97a197a2ac31
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/xml-builder@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8e45d10ef3e19c09c2f19aef1a4d8e6194b257a3a9a6b773e36899e85910006a62d3550fdd658be64df713f49b12402765e5afd4d601bacce11a944ec67f6b65
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 8/195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 8/0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 8/92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 8/5718f267085ed8edb3e7ef210137241775e607ee18b77d95aa5bd7514f47f5019aa2d82d96b3bf342ef7aa890a346fa1044532ff7cc3009e7d24fce3ce6200fa
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 8/cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 8/2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 8/10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:8.50.0":
version: 8.50.0
resolution: "@eslint/js@npm:8.50.0"
checksum: 8/302478f2acaaa7228729ec6a04f56641590185e1d8cd1c836a6db8a6b8009f80a57349341be9fbb9aa1721a7a569d1be3ffc598a33300d22816f11832095386c
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 8/4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.11":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 8/f8ea57b0d7ed7f2d64cd3944654976829d9da91c04d9c860e18804729a33f7681f78166ef4c761850b8c324d362f7d53f14c5c44907a6b38b32c703ff85e4805
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 8/0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 8/24929487b1ed48795d2f08346a0116cc5ee4634848bce64161fb947109352c562310fd159fc64dda0e8b853307f5794605191a9547f7341158559ca3c8262a45
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: 8/b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 8/61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 8/d89597752fd88d3f3480845691a05a44bd21faac18e2185b6f436c3b0fd0c5a859fbbd9aaa92050c4052caf325ad3e10e2e1d1b64327517471b7d51babc0ddef
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 8/a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 8/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 8/190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@npmcli/fs@npm:^2.1.0":
version: 2.1.2
resolution: "@npmcli/fs@npm:2.1.2"
dependencies:
"@gar/promisify": "npm:^1.1.3"
semver: "npm:^7.3.5"
checksum: 8/405074965e72d4c9d728931b64d2d38e6ea12066d4fad651ac253d175e413c06fe4350970c783db0d749181da8fe49c42d3880bd1cbc12cd68e3a7964d820225
languageName: node
linkType: hard
"@npmcli/move-file@npm:^2.0.0":
version: 2.0.1
resolution: "@npmcli/move-file@npm:2.0.1"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 8/52dc02259d98da517fae4cb3a0a3850227bdae4939dda1980b788a7670636ca2b4a01b58df03dd5f65c1e3cb70c50fa8ce5762b582b3f499ec30ee5ce1fd9380
languageName: node
linkType: hard
"@pkgr/utils@npm:^2.4.2":
version: 2.4.2
resolution: "@pkgr/utils@npm:2.4.2"
dependencies:
cross-spawn: "npm:^7.0.3"
fast-glob: "npm:^3.3.0"
is-glob: "npm:^4.0.3"
open: "npm:^9.1.0"
picocolors: "npm:^1.0.0"
tslib: "npm:^2.6.0"
checksum: 8/24e04c121269317d259614cd32beea3af38277151c4002df5883c4be920b8e3490bb897748e844f9d46bf68230f86dabd4e8f093773130e7e60529a769a132fc
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/abort-controller@npm:2.2.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/87bf79591d2b2b289dadf2ed04f082232b44e39bd92c188bae5fe3d11cdc4e4d54f0962a7865c159f4c7f914b8d093fe2744f5ab9de07a0b4cc13f9da4a6cf48
languageName: node
linkType: hard
"@smithy/chunked-blob-reader-native@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/chunked-blob-reader-native@npm:2.2.0"
dependencies:
"@smithy/util-base64": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/72cea2e748d50ef0fb86e648830a80464b20090013a77c862e464dfa4b5a293498249115a6f3934ed73d76931b7db75f71aed022de73b0a3b004e32b99dc65e8
languageName: node
linkType: hard
"@smithy/chunked-blob-reader@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/chunked-blob-reader@npm:2.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/96e08c563e78d53b917ae6ab225cc9c4d1894e237e54addb1023d6582b3e91cc03a3d7f758f79ce730da0e4acdcfbc7578846bdd13141a3125d22e577ea674f2
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/config-resolver@npm:2.2.0"
dependencies:
"@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: 10c0/977c3bd383b72e0ab25238515fddfd9138855b7c24247e19c5d1490b6a61234bd737956f770539508d7f4c07a54efb917923e5642abf15c1803df43fe5079859
languageName: node
linkType: hard
"@smithy/core@npm:^1.4.0":
version: 1.4.0
resolution: "@smithy/core@npm:1.4.0"
dependencies:
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a5ece1a4751be0778754cdff7484fd8930068c1ea858c696836ecd9c60fdd7944aef27590d35b95f6a4c499427c7b653ffddc452ad3ee6f8906e2a57e06e39ad
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^2.3.0":
version: 2.3.0
resolution: "@smithy/credential-provider-imds@npm:2.3.0"
dependencies:
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/62d0416c667349ad493fe27eab9fb3dc8b67d87d6e20d25a02034234e0a2a5da6e7c02341bbfa055c92a0ad170aa6ab9191aa0dc728ad57c87da3f45236fc2c2
languageName: node
linkType: hard
"@smithy/eventstream-codec@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/eventstream-codec@npm:2.2.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-hex-encoding": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b2b45542d81b56be382a40866af378a66579c76a8a099e8025b96b97bc4944662cbbd9fafef1ce88a3c8181c7bebb33470a9a064772ecc3b378b0e8e6899681d
languageName: node