-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathyarn.lock
26141 lines (23695 loc) · 910 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
"@ampproject/remapping@npm:2.3.0, @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: 81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1901.6":
version: 0.1901.6
resolution: "@angular-devkit/architect@npm:0.1901.6"
dependencies:
"@angular-devkit/core": "npm:19.1.6"
rxjs: "npm:7.8.1"
checksum: 728ebd2e37d5443689a5f6ca26f113ae08389e1e277e51035095d5325e8222ccd0fbd89287d5af2569ceab205335a453d69b43072516316eaac46c9bd93c16ef
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^19.1.6":
version: 19.1.6
resolution: "@angular-devkit/build-angular@npm:19.1.6"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1901.6"
"@angular-devkit/build-webpack": "npm:0.1901.6"
"@angular-devkit/core": "npm:19.1.6"
"@angular/build": "npm:19.1.6"
"@babel/core": "npm:7.26.0"
"@babel/generator": "npm:7.26.3"
"@babel/helper-annotate-as-pure": "npm:7.25.9"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-transform-async-generator-functions": "npm:7.25.9"
"@babel/plugin-transform-async-to-generator": "npm:7.25.9"
"@babel/plugin-transform-runtime": "npm:7.25.9"
"@babel/preset-env": "npm:7.26.0"
"@babel/runtime": "npm:7.26.0"
"@discoveryjs/json-ext": "npm:0.6.3"
"@ngtools/webpack": "npm:19.1.6"
"@vitejs/plugin-basic-ssl": "npm:1.2.0"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.20"
babel-loader: "npm:9.2.1"
browserslist: "npm:^4.21.5"
copy-webpack-plugin: "npm:12.0.2"
css-loader: "npm:7.1.2"
esbuild: "npm:0.24.2"
esbuild-wasm: "npm:0.24.2"
fast-glob: "npm:3.3.3"
http-proxy-middleware: "npm:3.0.3"
istanbul-lib-instrument: "npm:6.0.3"
jsonc-parser: "npm:3.3.1"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.1"
less-loader: "npm:12.2.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.3.1"
mini-css-extract-plugin: "npm:2.9.2"
open: "npm:10.1.0"
ora: "npm:5.4.1"
picomatch: "npm:4.0.2"
piscina: "npm:4.8.0"
postcss: "npm:8.4.49"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.83.1"
sass-loader: "npm:16.0.4"
semver: "npm:7.6.3"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.37.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.8.1"
webpack: "npm:5.97.1"
webpack-dev-middleware: "npm:7.4.2"
webpack-dev-server: "npm:5.2.0"
webpack-merge: "npm:6.0.1"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^19.0.0
"@angular/localize": ^19.0.0
"@angular/platform-server": ^19.0.0
"@angular/service-worker": ^19.0.0
"@angular/ssr": ^19.1.6
"@web/test-runner": ^0.19.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^19.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
typescript: ">=5.5 <5.8"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
"@web/test-runner":
optional: true
browser-sync:
optional: true
jest:
optional: true
jest-environment-jsdom:
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
checksum: 75973a78aad1210cf91639338340dc3eaa3851aba0b60e20d1d4761bfdd9934014c2d8a8075c86b22ef1fa5af0bcfbbcca3a652d105c8a00b41d733730515da8
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1901.6":
version: 0.1901.6
resolution: "@angular-devkit/build-webpack@npm:0.1901.6"
dependencies:
"@angular-devkit/architect": "npm:0.1901.6"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
checksum: da2358af8e579dbe6c7bc20dc02ca11dd68d6dc534c56ef3e3cbd27e7a16dbd756be9251a59fc3674f95c45218b4543f0189a4a23486a7093d5215a5fb83e429
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.1.6":
version: 19.1.6
resolution: "@angular-devkit/core@npm:19.1.6"
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
peerDependenciesMeta:
chokidar:
optional: true
checksum: dc0da55674c81c1a83a0d465d136f78c935d7a945b909cb2363cee49a5b604daa01a10ef0100c6493cc09615e4515fccee9792f26b3dfbd2c711438dd2983859
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.1.6":
version: 19.1.6
resolution: "@angular-devkit/schematics@npm:19.1.6"
dependencies:
"@angular-devkit/core": "npm:19.1.6"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 36d85ef7f26d8eb5da2afe4c91d610ce767293ff91f71ab089b3ace93bc11a8f1c021a518fbe46f61910376af0c439996bf7a6b9217db2d5b2170135c61bdd70
languageName: node
linkType: hard
"@angular/animations@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/animations@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.1.6
checksum: 87b33e4007c14fde6afd36c19b97f8851d0fc060164ea40ff8366ae318cfd8721c96b06233722d3f2bd106e0256416601bfb540b489248d992109d5f9a6406b3
languageName: node
linkType: hard
"@angular/build@npm:19.1.6":
version: 19.1.6
resolution: "@angular/build@npm:19.1.6"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1901.6"
"@angular-devkit/core": "npm:19.1.6"
"@babel/core": "npm:7.26.0"
"@babel/helper-annotate-as-pure": "npm:7.25.9"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-syntax-import-attributes": "npm:7.26.0"
"@inquirer/confirm": "npm:5.1.1"
"@vitejs/plugin-basic-ssl": "npm:1.2.0"
beasties: "npm:0.2.0"
browserslist: "npm:^4.23.0"
esbuild: "npm:0.24.2"
fast-glob: "npm:3.3.3"
https-proxy-agent: "npm:7.0.6"
istanbul-lib-instrument: "npm:6.0.3"
listr2: "npm:8.2.5"
lmdb: "npm:3.2.2"
magic-string: "npm:0.30.17"
mrmime: "npm:2.0.0"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.8.0"
rollup: "npm:4.30.1"
sass: "npm:1.83.1"
semver: "npm:7.6.3"
vite: "npm:6.0.11"
watchpack: "npm:2.4.2"
peerDependencies:
"@angular/compiler": ^19.0.0
"@angular/compiler-cli": ^19.0.0
"@angular/localize": ^19.0.0
"@angular/platform-server": ^19.0.0
"@angular/service-worker": ^19.0.0
"@angular/ssr": ^19.1.6
less: ^4.2.0
ng-packagr: ^19.0.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
typescript: ">=5.5 <5.8"
dependenciesMeta:
lmdb:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
less:
optional: true
ng-packagr:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
checksum: 7c694af8a5bbf4a8a7c2323888c07e1220f6bbe83e739ac077d42599e86358396a8be867098490d24e7d486b3721ec8849319b289650ac047c44872a1669b19c
languageName: node
linkType: hard
"@angular/cdk@npm:^19.1.3, @angular/cdk@npm:^19.1.4":
version: 19.1.4
resolution: "@angular/cdk@npm:19.1.4"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^19.0.0 || ^20.0.0
"@angular/core": ^19.0.0 || ^20.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: ee1318903858cef9f7db37d60aceaa89d100efdca494d7df5820725740a05440451a368836adc2dc5f5a322760d3b4aed6f308244a37366b96d08e178d8f2a19
languageName: node
linkType: hard
"@angular/cli@npm:^19.1.6":
version: 19.1.6
resolution: "@angular/cli@npm:19.1.6"
dependencies:
"@angular-devkit/architect": "npm:0.1901.6"
"@angular-devkit/core": "npm:19.1.6"
"@angular-devkit/schematics": "npm:19.1.6"
"@inquirer/prompts": "npm:7.2.1"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@schematics/angular": "npm:19.1.6"
"@yarnpkg/lockfile": "npm:1.1.0"
ini: "npm:5.0.0"
jsonc-parser: "npm:3.3.1"
listr2: "npm:8.2.5"
npm-package-arg: "npm:12.0.1"
npm-pick-manifest: "npm:10.0.0"
pacote: "npm:20.0.0"
resolve: "npm:1.22.10"
semver: "npm:7.6.3"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: d4b50d7bc96e093c132dfa3cc261e928cd07aa18a5339587b6eb103e90d03e5c9c74665ea3fe80cb3523ced2e939cca6fffcbf97915bd3e2b4e9cfc056bbd6fc
languageName: node
linkType: hard
"@angular/common@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/common@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.1.6
rxjs: ^6.5.3 || ^7.4.0
checksum: 22db830fd2ba72cf8ef431515bfdc12b36ce8202bd0e1cb049a8516fa09a349d7d02f345c0ca2996427c7141d2aaaa1dbcca2417a3acb97d50c4eb2ea2edd00a
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/compiler-cli@npm:19.1.6"
dependencies:
"@babel/core": "npm:7.26.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^4.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.2.0"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 19.1.6
typescript: ">=5.5 <5.8"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: bf536386614992cfb6cbee72d6a3e6ff1b19522dec1be2eec67847f151f0a97173061651e19c3e88b9d79b9c892211f681dcecc1908ba9a62d4141833be69129
languageName: node
linkType: hard
"@angular/compiler@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/compiler@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.1.6
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: d8ab5bc884e56b35444fd34c9c1f93e31a501ea0d25f22eabec7229b61fa3007a79328163f847d037aef68cf5914cf038911279902108f8bd0c80b26e1f463ee
languageName: node
linkType: hard
"@angular/core@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/core@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
checksum: ec8d114b0086a31b0eb1c3fe1d6e52dcc228a183e9f678ceae2ecf67d06fc746d9e4336f3e400702bd664a352835cfc317a1f849427e9dc8b0ad8e1622299ea4
languageName: node
linkType: hard
"@angular/forms@npm:19.1.5":
version: 19.1.5
resolution: "@angular/forms@npm:19.1.5"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.1.5
"@angular/core": 19.1.5
"@angular/platform-browser": 19.1.5
rxjs: ^6.5.3 || ^7.4.0
checksum: b547f06216c89bb2b42c092683bc25706075b608d69643c0671152fce7f88717af6fa5242b16d873014cdcbab8787f9b0646acb61c63d42bdaa95c51fb73de3d
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/platform-browser-dynamic@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.1.6
"@angular/compiler": 19.1.6
"@angular/core": 19.1.6
"@angular/platform-browser": 19.1.6
checksum: d896eb4f9dec0125bbf5d6553bc6593c1adbe2d6488f98594a2aeba40dbc8a11fbff3dd62161a7b22e47a5453e480c531749367788bd462f70d73d71cbff46d2
languageName: node
linkType: hard
"@angular/platform-browser@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/platform-browser@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 19.1.6
"@angular/common": 19.1.6
"@angular/core": 19.1.6
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: e1be06cdfeb9b172549630a9e3f3d24928aa622a0cdd4864f913f56dea40b94d79c66b6a7eea5bc5fa6339ef3f44201f337f58a63500c9deff84c98d33d5d24b
languageName: node
linkType: hard
"@angular/platform-server@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/platform-server@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
xhr2: "npm:^0.2.0"
peerDependencies:
"@angular/animations": 19.1.6
"@angular/common": 19.1.6
"@angular/compiler": 19.1.6
"@angular/core": 19.1.6
"@angular/platform-browser": 19.1.6
checksum: 42ba876f0336462526d6206f97d2ebc49feec736344425cc25655fc67abe3a815e6b5f16b38771a95ee577071fd64ce708dab733747676696085996d59c9a652
languageName: node
linkType: hard
"@angular/router@npm:^19.1.5":
version: 19.1.6
resolution: "@angular/router@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.1.6
"@angular/core": 19.1.6
"@angular/platform-browser": 19.1.6
rxjs: ^6.5.3 || ^7.4.0
checksum: 54a252c42455a79798f1f6ed88b5ce366ca31601613a81d9798d9105ffc6f8951f618b3bb272d7c475ac1ae539677683b226d5d7f1f1767c60a71de44cecdc7e
languageName: node
linkType: hard
"@angular/ssr@npm:^19.1.6":
version: 19.1.6
resolution: "@angular/ssr@npm:19.1.6"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^19.0.0
"@angular/core": ^19.0.0
"@angular/platform-server": ^19.0.0
"@angular/router": ^19.0.0
peerDependenciesMeta:
"@angular/platform-server":
optional: true
checksum: 6dc33dc755f0640573fcfb2fdc444eba5a3943a47bd11afb6509be135f97a1422577172e7628f20e2864fc64c90100bed6298be39d65ff7b67b7ae26090ce477
languageName: node
linkType: hard
"@angular/ssr@npm:^19.1.7":
version: 19.1.7
resolution: "@angular/ssr@npm:19.1.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^19.0.0
"@angular/core": ^19.0.0
"@angular/platform-server": ^19.0.0
"@angular/router": ^19.0.0
peerDependenciesMeta:
"@angular/platform-server":
optional: true
checksum: c443ded9addb86039819953aee0f3a658a11e652e431c6d2d3dc355fd7793869efcf2ad32bce55e72c7cd26224649829583b47470c39d936f8fbf8203c7700b4
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.0.0":
version: 1.0.0
resolution: "@antfu/install-pkg@npm:1.0.0"
dependencies:
package-manager-detector: "npm:^0.2.8"
tinyexec: "npm:^0.3.2"
checksum: 2361383f9aef51f39e96d0276eb266f01d1cabd4881bba6db2e3dff392ac33b537fcb18a07c66ecd315b808b9a70dc48a95e53531d407b2e1956f49f3b6c5b5b
languageName: node
linkType: hard
"@antfu/utils@npm:^8.1.0":
version: 8.1.0
resolution: "@antfu/utils@npm:8.1.0"
checksum: fc4c28c3cd2626042a12dfbe5cc4755e5b2ae9bf27c10544b21a47a73d21d9a90fddbefbc8350507f57e26f3fb3eb37c5889510679df4bb4c654112bc41bd47c
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: eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.0.0":
version: 3.744.0
resolution: "@aws-sdk/client-s3@npm:3.744.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.744.0"
"@aws-sdk/credential-provider-node": "npm:3.744.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.744.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.744.0"
"@aws-sdk/middleware-ssec": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.744.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.744.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.744.0"
"@aws-sdk/xml-builder": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.2"
"@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.3"
"@smithy/middleware-retry": "npm:^4.0.4"
"@smithy/middleware-serde": "npm:^4.0.2"
"@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.3"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^4.0.4"
"@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: 3479ee062b3ef5335981cc013edd64962ec9e2b129d00d33e673f12951b465caa728130ee8b7016f647e44e1a72a87e3030ae4b4b5b72e1ebe3a4ece7381e8ac
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/client-sso@npm:3.744.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.744.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.744.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.744.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.2"
"@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.3"
"@smithy/middleware-retry": "npm:^4.0.4"
"@smithy/middleware-serde": "npm:^4.0.2"
"@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.3"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^4.0.4"
"@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: a61d128f3055e604d3d81f9ddce9e9915570a4206ce7b3a66644d7820ece38dede094fe597b6545fbc8c43defd13d6a04990d5cf2cb40349a027129bf1f6f781
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/core@npm:3.744.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/core": "npm:^3.1.2"
"@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.3"
"@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: d0e3238083bfe58129e73d6de50b972156b0b4b058d6344ecb01185753cae891908611b04406a1a6a455e3cad723d5d3189e63d5b147c23cf6b6f5f4382176a3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-env@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.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: 759f0d7684af4045418c95115cdc4d5878be792c3b0ccb15e571b7e49b00478f4457ff7bb6fa8dcdeb0d331bab397553c676c62daa6117839be690b020a56bd0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-http@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.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.3"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-stream": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 48204c4135b7c2e5ab590a1b9e08a7e0d22d0082b528b86def44293bc393725a7ef87c0eafb7b379bf43960b71c13d49b89264ca8e9757c35ce6c076bb78cda6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.0"
"@aws-sdk/credential-provider-env": "npm:3.744.0"
"@aws-sdk/credential-provider-http": "npm:3.744.0"
"@aws-sdk/credential-provider-process": "npm:3.744.0"
"@aws-sdk/credential-provider-sso": "npm:3.744.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.744.0"
"@aws-sdk/nested-clients": "npm:3.744.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: 88cccc04bc4e3db9850a9473f32ded2dbc4d98f8f9d264792e7638c787f61a4b8e88254b19ce9712615af8b0f4e0b1ab9bae43a762b511f3b6f9dea47ab9a696
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-node@npm:3.744.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.744.0"
"@aws-sdk/credential-provider-http": "npm:3.744.0"
"@aws-sdk/credential-provider-ini": "npm:3.744.0"
"@aws-sdk/credential-provider-process": "npm:3.744.0"
"@aws-sdk/credential-provider-sso": "npm:3.744.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.744.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: 94db2864ad275ea4bedeee2174c06f1843f007c8d69ae880f2be5f6baa40120dc1c3a9b43d2c080df4d9d402042ae64d75e807c0069cf8cfbf101c3170ddeb2a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-process@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.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: bc712a37a9c4f0d33515e60931902fb415b9a97f35158cf511d4cc89e0960917580039698faec00e58e67e1998bf5add2d7f34436921cf38a330750fba2adcf9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.744.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.744.0"
"@aws-sdk/core": "npm:3.744.0"
"@aws-sdk/token-providers": "npm:3.744.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: 6b23fe8cb8f46aff55af27a2b841054d1f9907967c027dd09dcd6adeeac10889811536f3a8659248de7a2cf5a4d03ac361b2ea6353182b043c6217f09d9c95a4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.0"
"@aws-sdk/nested-clients": "npm:3.744.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: 10a6e3fbc08d25826cab40f63d15d29c76e80187f90f19063f12c3b3ddc79bfc0e4b0e2130272e5e8e95b55f447c7ec376798ae34b2230e053b6278b81479f59
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: f0f98bb478ff469ec3aab0ae5b8122cafc26e4d88efbb1d277429dfd21c70a64eaf996d5cbb7360ff93dcc0e985d75bca5bfcb6a814b1d18ab14c5b912c7c5ad
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: 5e6fa03e4b4ef8ff52314a5aea6b7c807e39516ad7c817003c8ef22c4d25de98dc469bab30d6f11a56cba7a968bcdf032373c8c1d074a16ff72ac2cd08f1a5e9
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.744.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.744.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: f78be5817c761d5c448eca9cfa234cdc28987556d1e63f0099dc4a7d3f6d68122bb23be441fc92c6b89522e2958ebf0a8f8eb096f19a06d692ac5259cee55e7a
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: 56e8501c3beda2961ebba56f1146849594edafa0d33ce2bdb04b62df9732d1218ffe89882333d87d76079798dc575af1756db4d7270916d8d83f8d9ef7c4798e
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: ec6a10d2545dfbda2806e8dd2244a6be76c97d5fdae2068c461cb61753801ce60079518ad45f3eb559a37042f057636da754cccec751d04d0b94b534d423424e
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: dc690e546d0411929ff5888cd2dad56b7583f160ce4339f24d4963b9d11022f06da76d5f96c56d2ff2624493885254200788c763f113c26695875b8a229ee9a1
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: e46e5f99895a4370141b3439c58b94670fddd01d18bbda43a621cb0a5f2bb3384db66757f16da49815af52d29f2cfb8c5d12e273853ad34c919f4f71d078572f
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.1.2"
"@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.3"
"@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: 75bbeeb3b7ef8ae1917db6b402c7fccf2e72b5e55d56fbd226f49c703704e4fb7a7d373dd972ceaf9a84d7527dd9fcce3ccbd67facc676bc78bab573aa03059a
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: ba1d0f202ef0e58d82895bbe71dcb4520f0eaf958ebc37baa3383e42729091fca2f927ec3482478b0ece35ae001c72da9afb71c83504e0aba6df4074a6a2187a
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.744.0"
dependencies:
"@aws-sdk/core": "npm:3.744.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@smithy/core": "npm:^3.1.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: eba9f2c273cce3764696d24dcd0bbc839e5e231e0cebaa51f4b7cc2cb4a625827d77e6614270d1d58c85a592d11345741b52852be60f836677c70d39c3777a63
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.744.0":
version: 3.744.0
resolution: "@aws-sdk/nested-clients@npm:3.744.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.744.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.744.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.744.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.2"
"@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.3"
"@smithy/middleware-retry": "npm:^4.0.4"
"@smithy/middleware-serde": "npm:^4.0.2"
"@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.3"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^4.0.4"
"@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: 0cf2f091421f39ba21fff02c7731f2e3baa0f97bda2d90dc361f89c687667c8737382481918f1a47b04f241e1afecc92d81d3fcd198058e54bcd81df3a13bdc8
languageName: node