-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathyarn.lock
10050 lines (9083 loc) · 355 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
"@acuminous/bitsyntax@npm:^0.1.2":
version: 0.1.2
resolution: "@acuminous/bitsyntax@npm:0.1.2"
dependencies:
buffer-more-ints: "npm:~1.0.0"
debug: "npm:^4.3.4"
safe-buffer: "npm:~5.1.2"
checksum: 10/abdc4313ae08e52fb8eeaebf53759c3b9a38983a696d77c46c24de1c065247355a1b5c02ad3618700d3fb3628ccf3ec39227a080bd1fe7adc864144ccf84b0cc
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:^1.10.1":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10/abef75f21470ea43dd6071168e092d2d13e38067e349e76186c78838ae174a46c3e18ca50921d05bea6ec3203074147c9e271f8cb6531d1c2c0e146f3199ddcb
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: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.3.10":
version: 17.3.10
resolution: "@angular-devkit/core@npm:17.3.10"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/5d19fd615578893678879e1666f99a09b9c0139c708b3b7b411bef704345805007242ba5cf6491f771fc60163ed101609bd52083f2f0643d988eb823cdecfe06
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.3.11":
version: 17.3.11
resolution: "@angular-devkit/core@npm:17.3.11"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/eb9a9ea1383cea8e55a8a0686b7c79790a2b4600a9250b2b826af527e5c1f3dbffb14d6a19b899d4c414f8e2723df71608c2f06612e895b553b5777174c207d2
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.0.1":
version: 19.0.1
resolution: "@angular-devkit/core@npm:19.0.1"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^4.0.0
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/0dbfc2bc35a4d1f227d24c2f90013a8ba285df63463166c89ab86f032af259b1fc65d4b941a49e8dbb930001c47064e49880e132741e6857f3fd45ae84f051a1
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:17.3.11":
version: 17.3.11
resolution: "@angular-devkit/schematics-cli@npm:17.3.11"
dependencies:
"@angular-devkit/core": "npm:17.3.11"
"@angular-devkit/schematics": "npm:17.3.11"
ansi-colors: "npm:4.1.3"
inquirer: "npm:9.2.15"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
schematics: bin/schematics.js
checksum: 10/660f4c99fdce3dfc53e243933f4ce2fc8e3d40767a3937f4d2e04abe960ac9c008d752de945e8d6aef941f193fd1c77d6a0c5891b58faeface3ccacb8f7e9c37
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.3.10":
version: 17.3.10
resolution: "@angular-devkit/schematics@npm:17.3.10"
dependencies:
"@angular-devkit/core": "npm:17.3.10"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.8"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/b49b2c9430d6b4c82a384abe08a05d7d420de6a68e0a3a6381143e65f075acd0bc2000cf154b669da5bf9c5e86ab2b3c3a998c182b6659a4bc9ffd61e87da30e
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.3.11":
version: 17.3.11
resolution: "@angular-devkit/schematics@npm:17.3.11"
dependencies:
"@angular-devkit/core": "npm:17.3.11"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.8"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/752246dba1146a99f051faa6b9ed048f76c4a8c0fff73aee153023945b2e47d3bd07a7cbd5b0b60776640dad3c31d0ded8b760fc3995417369b02630e7dd8d08
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.0.1":
version: 19.0.1
resolution: "@angular-devkit/schematics@npm:19.0.1"
dependencies:
"@angular-devkit/core": "npm:19.0.1"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.12"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 10/8977f82f9035034e0c7834651517464fb4980ef8a3bae44c597a730d6d04b42e9b6f7f290ceaa651e792137bd0453fb81c223b2a72c295eff4d59af398e4acc3
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: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
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: 10/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
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: 10/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
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: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
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: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
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: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-kms@npm:^3.734.0":
version: 3.734.0
resolution: "@aws-sdk/client-kms@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/credential-provider-node": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/a8dcdcccffffdfc4ee2c8570168ea60b6dbc5fefba6fe461a873864ded3165d12d626096d17d71a636ae0194caae4a05c328d06f594094a905ce2a35a2e3f91b
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.735.0":
version: 3.735.0
resolution: "@aws-sdk/client-s3@npm:3.735.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/credential-provider-node": "npm:3.734.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.734.0"
"@aws-sdk/middleware-expect-continue": "npm:3.734.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.735.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-location-constraint": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.734.0"
"@aws-sdk/middleware-ssec": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@aws-sdk/xml-builder": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/eventstream-serde-browser": "npm:^4.0.1"
"@smithy/eventstream-serde-config-resolver": "npm:^4.0.1"
"@smithy/eventstream-serde-node": "npm:^4.0.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-blob-browser": "npm:^4.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/hash-stream-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/md5-js": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10/fc2bcc0a00f1a0c5c125af3fe56cbbb31d3b07112b3da541ab322b0002fb40feea6c4870f42d2325531b6ac40a758bf8f1eca473d3d58bf296d24552d3b8f273
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/client-sso@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/b713f336fa129a0797534e18d65377608a26d34f5590106a7997cb2dbfda77a87dec9a4a1ac009b9c59f08c7031f6fe6062c05d056aa206a137828235b93fc07
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/core@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/cb530e71fff8ea626706ad4aef7a1fccf1215dd119c99cc909b75203c91438ba4c99c5096c76c0289e807789d3fa3eae56174083a711bf3cfa72c168513e8d9a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-env@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/fe822ce3224d4b67f5d152680050d1c896923a7c4ad47c93f6c923675a540d5770d12863b9cae8fbb35fba84e265ab654c8038faf67832354f6b8a4e3a31c3e5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-http@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-stream": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10/87b1b2e9294562893928afcfbd88a6ad306fb8c3051888b1da7d31ce5d7bc31c2f95d961a991756c22c08fa9b87897eb4e651a5cd62878b3fdebad72c15498d8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/credential-provider-env": "npm:3.734.0"
"@aws-sdk/credential-provider-http": "npm:3.734.0"
"@aws-sdk/credential-provider-process": "npm:3.734.0"
"@aws-sdk/credential-provider-sso": "npm:3.734.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.734.0"
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/4a5eab1d5090b2fd71e3cd446b5d9fc7076345ac5d72a6a2c861fa60d9ce6f00aaa6b40ea8a4e0a3c34cf9632546e79eafcdc1384004410d6611db087d1757be
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-node@npm:3.734.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.734.0"
"@aws-sdk/credential-provider-http": "npm:3.734.0"
"@aws-sdk/credential-provider-ini": "npm:3.734.0"
"@aws-sdk/credential-provider-process": "npm:3.734.0"
"@aws-sdk/credential-provider-sso": "npm:3.734.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/c3f528a43dd0f6bbdf453aff1aa45772aa885ad096c00da8d884b8617f84669130b45e4afe48b264b19a88b05170f0f354b8f94d14eb110ce1f95e1685e2405e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-process@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/bd5811fdba229e56ac4f92479e7682719fb1251c1259416c99e9fe9c1767320b7c7b38455deb46b86af2a93c7ca4db9767c661d560e9155550420a685b08a6b7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.734.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.734.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/token-providers": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/104000aff7dd546dbe16ca789fbdb89fe4872fb729f03f34533a96f01d4d44681535f0ae22fb6f4556d429fa8d08977fa79d9a016a50fd680a85dba7c97f072f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/78c706b9523724bf1c4ed7ee3849cbadb541b7a9adec519fba7fbf201e4f2b81c4e44fa7e57492996862ea264700fcf726b7cf38c8d08200af900493ccd4d14f
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/be45d671a44df8848f542770fd7131c0f97cc20f387413d9cb28d1285531bbf566f073de575e8590db8c033e52bbce3805be0497f0170811d773c8ccc80355a7
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/6f5e1a381164c92987b9ea0f5de7ab4317a7bc142380b1d35a6d90c50d0b879e873df9d1574ad13b7c8fc34099d1394ef977e0bf986eed83d3876f8f5b77dd34
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.735.0":
version: 3.735.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.735.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/adbaba6c786b79ab5ebaca0a97a90d800f662e07c30e490ef8482398f0edd8404ae063ecfebbb30e3aa22f53214847125edcd8e027ade45bfd9adb5cf1766d14
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-host-header@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/56da2b7e487fa18445cf4876660297d3c61b1a7b8fceb40860da21ab9581b47e1abf5a2f6204862289f7fb534aaf5f19842c0ed0cf46e6178f59f6c3053464bf
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/ca7517b1c0a510d24c5541db3c36bcf9fd75418aa9e6a29ae7288d6c90942909f3ce65a51f08b6126d7a84e158798c96513dde6151223f58e93d1ac3a6ada40b
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-logger@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/e259fe49ecb2c51424a96c7bc834d061eb6e55fce2686637ae0ada3612db582e2261895d2cffcf9f018436bb7fd8c600634df1b4012c276655595f543e30e426
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/93ca23bcb5b7cec82cab2b9fa87b84ea249440ca702bf387634311c8bb0aa66a96defd7b77bd8408d0f91ea3971e43648e1adb9a09ef0b1bba4cd63e4d6616b7
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/5015e5e16aa15294227dba0d6622cae3715931bbfaa884d7069aa545046a6437a5d2e9222755ab7729495e058c302b7dae5d95e75bf88a3efa7d100c2973d6a9
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-ssec@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/90c5bab066750d8ff64595050e72797022bc657c1dfef3348484922ba31f26ddea5dc675c6eff5cfcc3e51bcd230307e4ebc520c0ceb2076341b58ef4273baf1
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/23e3bc2811a08f23122420ad2ca7ff628f4a5e2c5ab991b33a1707910769e18b088e8197d1ba08556af5d6dc8cd89ae4d5c62fb34c9a66b72bcc41c3ce1ed7b9
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/nested-clients@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/d8ccd3158a139f20cbd8bc5a9d14e4bc5fd8f1cb67dbbfcbe3e7c19116de6214314af9e6f579d4349d02da47a1c2a38ebd591fd6c4435379aba19283c4bd44a2
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/region-config-resolver@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
tslib: "npm:^2.6.2"
checksum: 10/e0385529263384d3ad14529d581692028879e7b3ae2d4233b44acd1d97b8a13b7007ff4088b1e87bf33e10034584072ead0c9721559d556bd60fe67087cd02e3
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.734.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/8c126f2470f98a246156e468200e8ba278416093b475b8f560f75d141af7cc03e78d62d3c725c0e497e865dd3ceac070bf535947ca6f253953dda3f78ef2c57c
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/token-providers@npm:3.734.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/23419735a58106d0512f052c4a595db59235e81c076cb881629a864960e0dcc2c7ec573eaa4657cf465aa3a9e52507955c5ce4d2725278b359cba53822975d68
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/types@npm:3.734.0"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/3a1a06ec927cda29d0b70d1fa44c3dc5fb33bdf8d2a045e5cf597fe54b1ff5d6d3527c159269c8ba7f1fceb414e9a272a718af1360466b82cd6d16d1048112ff
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.667.0
resolution: "@aws-sdk/types@npm:3.667.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b1c4c58a8d27ba4e809d6ff721ebe5104dd2aac87ca1837319ae2c4d588dcdeb352b3ff65a38353b302569e3568874272df6847792f240b7aa2a692a67e421e3
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/558c187aff2af3c58e830468969f936103770d8830a37b56eea06f7964a2a80f3cd5cc4bfb71af3470ca2ef37e85f6b21318d61a68129c293eb47b337c5bfa9d
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-endpoints@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-endpoints": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10/2143061a7378bbfe8c0c09363b1c1d1014287f453fa26a0c002525d59940d78fd1cb20e75a8ac061962b42bd8e0eb5c516e120e9be0b05bb45c7a79c1227182d
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.568.0
resolution: "@aws-sdk/util-locate-window@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/372acb9c6df3861afae4ced5d8d3aad40d8dc633684e765b6ed74baff7f4f30a778f96829ee81d56639c14cb4346043069a2b911c58387dd20591c0f6e3a524d
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/40fc914b5fe26983ede06c4157f72b64bb26c779627bcec1eea8a302ad0d4bb3f16813f75cd5038fbc31c8ea1e9603f5a795d902d584de3fa5eda557805f64ad
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.734.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/cb3bbc88f46c9874a05830f367da723f59a4cf47158fe7700eb28dd51cc0b6cc223aa4bf108b08d76d1ca6bcc71dbbf62e8454265491c6c113fa2e5c6b071cd2
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/xml-builder@npm:3.734.0"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/91d4ac0dbf43f4fb1a8db851784b4bf340a7b590bea78fde43e10ef7cb9393ba532eeb079e3265d5e85a2bd9c5c47677b52c81e7a1d06e25e23b30a9e69ff016
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/code-frame@npm:7.25.7"
dependencies:
"@babel/highlight": "npm:^7.25.7"
picocolors: "npm:^1.0.0"
checksum: 10/000fb8299fb35b6217d4f6c6580dcc1fa2f6c0f82d0a54b8a029966f633a8b19b490a7a906b56a94e9d8bee91c3bc44c74c44c33fb0abaa588202f6280186291
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.7":
version: 7.25.8
resolution: "@babel/compat-data@npm:7.25.8"
checksum: 10/269fcb0d89e02e36c8a11e0c1b960a6b4204e88f59f20c374d28f8e318f4cd5ded42dfedc4b54162065e6a10f71c0de651f5ed3f9b45d3a4b52240196df85726
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9":
version: 7.25.8
resolution: "@babel/core@npm:7.25.8"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.25.7"
"@babel/generator": "npm:^7.25.7"
"@babel/helper-compilation-targets": "npm:^7.25.7"
"@babel/helper-module-transforms": "npm:^7.25.7"
"@babel/helpers": "npm:^7.25.7"
"@babel/parser": "npm:^7.25.8"
"@babel/template": "npm:^7.25.7"
"@babel/traverse": "npm:^7.25.7"
"@babel/types": "npm:^7.25.8"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/31eb1a8ca1a3cc0026060720eb290e68205d95c5c00fbd831e69ddc0810f5920b8eb2749db1889ac0a0312b6eddbf321d18a996a88858f3b75c9582bef9ec1e4
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.7, @babel/generator@npm:^7.7.2":
version: 7.25.7
resolution: "@babel/generator@npm:7.25.7"
dependencies:
"@babel/types": "npm:^7.25.7"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/01542829621388077fa8a7464970c1db0f748f1482968dddf5332926afe4003f953cbe08e3bbbb0a335b11eba0126c9a81779bd1c5baed681a9ccec4ae63b217
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-compilation-targets@npm:7.25.7"
dependencies:
"@babel/compat-data": "npm:^7.25.7"
"@babel/helper-validator-option": "npm:^7.25.7"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/bbf9be8480da3f9a89e36e9ea2e1c76601014c1074ccada7c2edb1adeb3b62bc402cc4abaf8d16760734b25eceb187a9510ce44f6a7a6f696ccc74f69283625b
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-module-imports@npm:7.25.7"
dependencies:
"@babel/traverse": "npm:^7.25.7"
"@babel/types": "npm:^7.25.7"
checksum: 10/94556712c27058ea35a1a39e21a3a9f067cd699405b64333d7d92b2b3d2f24d6f0ffa51aedba0b908e320acb1854e70d296259622e636fb021eeae9a6d996f01
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-module-transforms@npm:7.25.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.25.7"
"@babel/helper-simple-access": "npm:^7.25.7"
"@babel/helper-validator-identifier": "npm:^7.25.7"
"@babel/traverse": "npm:^7.25.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/480309b1272ceaa985de1393f0e4c41aede0d5921ca644cec5aeaf43c8e4192b6dd56a58ef6d7e9acd02a43184ab45d3b241fc8c3a0a00f9dbb30235fd8a1181
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.25.7, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.25.7
resolution: "@babel/helper-plugin-utils@npm:7.25.7"
checksum: 10/e1b0ea5e67b05378d6360e3fc370e99bfb247eed9f68145b5cce541da703424e1887fb6fc60ab2f7f743c72dcbfbed79d3032af43f2c251c229c734dc2572a5b
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-simple-access@npm:7.25.7"
dependencies:
"@babel/traverse": "npm:^7.25.7"
"@babel/types": "npm:^7.25.7"
checksum: 10/42da1c358f2516337a4f2927c77ebb952907543b9f85d7cb1e2b5b5f6d808cdc081ee66a73e2ecdf48c315d9b0c2a81a857d5e1923ea210b8e81aba5e6cd2b53
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-string-parser@npm:7.25.7"
checksum: 10/2b8de9fa86c3f3090a349f1ce6e8ee2618a95355cbdafc6f228d82fa4808c84bf3d1d25290c6616d0a18b26b6cfeb6ec2aeebf01404bc8c60051d0094209f0e6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-validator-identifier@npm:7.25.7"
checksum: 10/ec6934cc47fc35baaeb968414a372b064f14f7b130cf6489a014c9486b0fd2549b3c6c682cc1fc35080075e8e38d96aeb40342d63d09fc1a62510c8ce25cde1e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helper-validator-option@npm:7.25.7"
checksum: 10/3c46cbdd666d176f90a0b7e952a0c6e92184b66633336eca79aca243d1f86085ec339a6e45c3d44efa9e03f1829b470a350ddafa70926af6bbf1ac611284f8d3
languageName: node
linkType: hard
"@babel/helpers@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/helpers@npm:7.25.7"
dependencies:
"@babel/template": "npm:^7.25.7"
"@babel/types": "npm:^7.25.7"
checksum: 10/2632909f83aa99e8b0da4e10e5ab7fc4f0274e6497bb0f17071e004e037d25e4a595583620261dc21410a526fb32b4f7063c3e15e60ed7890a6f9b8ad52312c5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.25.7":
version: 7.25.7
resolution: "@babel/highlight@npm:7.25.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/823be2523d246dbf80aab3cc81c2a36c6111b16ac2949ef06789da54387824c2bfaa88c6627cdeb4ba7151d047a5d6765e49ebd0b478aba09759250111e65e08
languageName: node
linkType: hard