-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathyarn.lock
More file actions
24894 lines (22624 loc) · 866 KB
/
yarn.lock
File metadata and controls
24894 lines (22624 loc) · 866 KB
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
"@adobe/css-tools@npm:^4.4.0":
version: 4.4.0
resolution: "@adobe/css-tools@npm:4.4.0"
checksum: 10/9c6315fe9efa5075d6ddb6ded7a1424bc9c41a01f2314b6bdcc368723985fe161008d03ddcc2b27b2da50cb9c14190fbce965d15cefe5f9a31bdd43f35b52115
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.3.0, @ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1902.15":
version: 0.1902.15
resolution: "@angular-devkit/architect@npm:0.1902.15"
dependencies:
"@angular-devkit/core": "npm:19.2.15"
rxjs: "npm:7.8.1"
checksum: 10/2c06ab7a2f54aab4830fef53d1d8503a50897b3f98399fbe1528a100289eacfdc5378423ae9737abb0334d2a10bcd82e0a171d9ef2e3c42470aca2f9559cda30
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^19.0.0, @angular-devkit/build-angular@npm:^19.2.6":
version: 19.2.15
resolution: "@angular-devkit/build-angular@npm:19.2.15"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1902.15"
"@angular-devkit/build-webpack": "npm:0.1902.15"
"@angular-devkit/core": "npm:19.2.15"
"@angular/build": "npm:19.2.15"
"@babel/core": "npm:7.26.10"
"@babel/generator": "npm:7.26.10"
"@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.26.8"
"@babel/plugin-transform-async-to-generator": "npm:7.25.9"
"@babel/plugin-transform-runtime": "npm:7.26.10"
"@babel/preset-env": "npm:7.26.9"
"@babel/runtime": "npm:7.26.10"
"@discoveryjs/json-ext": "npm:0.6.3"
"@ngtools/webpack": "npm:19.2.15"
"@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.25.4"
esbuild-wasm: "npm:0.25.4"
fast-glob: "npm:3.3.3"
http-proxy-middleware: "npm:3.0.5"
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.2"
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.5.2"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.85.0"
sass-loader: "npm:16.0.5"
semver: "npm:7.7.1"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.39.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.8.1"
webpack: "npm:5.98.0"
webpack-dev-middleware: "npm:7.4.2"
webpack-dev-server: "npm:5.2.2"
webpack-merge: "npm:6.0.1"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^19.0.0 || ^19.2.0-next.0
"@angular/localize": ^19.0.0 || ^19.2.0-next.0
"@angular/platform-server": ^19.0.0 || ^19.2.0-next.0
"@angular/service-worker": ^19.0.0 || ^19.2.0-next.0
"@angular/ssr": ^19.2.15
"@web/test-runner": ^0.20.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 || ^19.2.0-next.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
typescript: ">=5.5 <5.9"
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: 10/47e94d21b1eb0c19ff4d0f899103d158263bee196bda86abb11fbc1f2df00b0b3b8c47a77582bd944e7d8720902d1e7590e01f904325cc327fbe31619a6e94b5
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1902.15":
version: 0.1902.15
resolution: "@angular-devkit/build-webpack@npm:0.1902.15"
dependencies:
"@angular-devkit/architect": "npm:0.1902.15"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
checksum: 10/c64d750644c5350971a53f3287aeb1f53a0ca37a92319f30d94f95e2197b9a7dc8354b9ebd611404e29f097f0fb30eaf63cbb3fb8bc2ec85b95116730446736b
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.2.15":
version: 19.2.15
resolution: "@angular-devkit/core@npm:19.2.15"
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: 10/5853922198758ac8bb83e058c17a84a72d8b6bb8b916d3e79892646c58047ae0ed572b1cb52c4822e50235dd2f6df3f458106732f55050b2638f0282b3827157
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.2.15":
version: 19.2.15
resolution: "@angular-devkit/schematics@npm:19.2.15"
dependencies:
"@angular-devkit/core": "npm:19.2.15"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/2d5dc4f3572481c5b042bce433b5b740b51f16b5332a7cee7b9ba03ebf48996d235dca7672448ffde8a8ffdb5781c283991b96bc5329c06777c3777550721b54
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:18.4.3":
version: 18.4.3
resolution: "@angular-eslint/bundled-angular-compiler@npm:18.4.3"
checksum: 10/4edd79d9c529154ac0c4406c7868767eb2f8d8d6895b82d6c3abc9c6fcd31e1cf3eee59997e0d502c37156406b382b6045c2ab951dfa5ddbeaf7659c8e3d1425
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:^18.0.1":
version: 18.4.3
resolution: "@angular-eslint/eslint-plugin-template@npm:18.4.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:18.4.3"
"@angular-eslint/utils": "npm:18.4.3"
aria-query: "npm:5.3.2"
axobject-query: "npm:4.1.0"
peerDependencies:
"@typescript-eslint/types": ^7.11.0 || ^8.0.0
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/5383ac6cd600c8cb97a539a02224a3d5b1783ce76b263c6802ec3137cf20d4fddef1280216953c94a05cfc1b6d4961b2c3458d8fa6fd369a88fd463cd4051366
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:^18.0.1":
version: 18.4.3
resolution: "@angular-eslint/eslint-plugin@npm:18.4.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:18.4.3"
"@angular-eslint/utils": "npm:18.4.3"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/4047c84caa0a900b3882f98253567cb544bd1391243d8e1cb3014d50de8c76cdac2a3f2289626dbfcaf29e06ab883cf29e5f91e8dda26bdfae8b402c2f218da3
languageName: node
linkType: hard
"@angular-eslint/utils@npm:18.4.3":
version: 18.4.3
resolution: "@angular-eslint/utils@npm:18.4.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:18.4.3"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/588cddc66a211757b0a3995a8c1c5b48c7ac4b3db0bee3a93b3d6c3cd0491443c170c1fa138b21c7697c8038cc42112965cea6b292cbe666a1fa00683c57b419
languageName: node
linkType: hard
"@angular/animations@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/animations@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.2.17
"@angular/core": 19.2.17
checksum: 10/dd8217a81ecfaa05b475147137400a53931cc90ad549bdf42cd4ff492037974aa17f324a8ec6dcb098e0e6730c21738ddf1bdb1145d6448bdafc227843e4c564
languageName: node
linkType: hard
"@angular/build@npm:19.2.15":
version: 19.2.15
resolution: "@angular/build@npm:19.2.15"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1902.15"
"@babel/core": "npm:7.26.10"
"@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.6"
"@vitejs/plugin-basic-ssl": "npm:1.2.0"
beasties: "npm:0.3.2"
browserslist: "npm:^4.23.0"
esbuild: "npm:0.25.4"
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.6"
magic-string: "npm:0.30.17"
mrmime: "npm:2.0.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.8.0"
rollup: "npm:4.34.8"
sass: "npm:1.85.0"
semver: "npm:7.7.1"
source-map-support: "npm:0.5.21"
vite: "npm:6.2.7"
watchpack: "npm:2.4.2"
peerDependencies:
"@angular/compiler": ^19.0.0 || ^19.2.0-next.0
"@angular/compiler-cli": ^19.0.0 || ^19.2.0-next.0
"@angular/localize": ^19.0.0 || ^19.2.0-next.0
"@angular/platform-server": ^19.0.0 || ^19.2.0-next.0
"@angular/service-worker": ^19.0.0 || ^19.2.0-next.0
"@angular/ssr": ^19.2.15
karma: ^6.4.0
less: ^4.2.0
ng-packagr: ^19.0.0 || ^19.2.0-next.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
typescript: ">=5.5 <5.9"
dependenciesMeta:
lmdb:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
karma:
optional: true
less:
optional: true
ng-packagr:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
checksum: 10/31c96e8bf55219d2a20453b5f4af9345520f557d69391e1130cefdc4206275ddc39f0cb7d51275fc9984d735bba4534775dc7dd1dcf45b752221b983f0b29d16
languageName: node
linkType: hard
"@angular/cli@npm:^19.0.0, @angular/cli@npm:^19.2.6":
version: 19.2.15
resolution: "@angular/cli@npm:19.2.15"
dependencies:
"@angular-devkit/architect": "npm:0.1902.15"
"@angular-devkit/core": "npm:19.2.15"
"@angular-devkit/schematics": "npm:19.2.15"
"@inquirer/prompts": "npm:7.3.2"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@schematics/angular": "npm:19.2.15"
"@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.2"
npm-pick-manifest: "npm:10.0.0"
pacote: "npm:20.0.0"
resolve: "npm:1.22.10"
semver: "npm:7.7.1"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: 10/af06bdb44e40b59287bc334c70c73836e798db40693c6ec00e0ef1ee178eb2b8eaaa88bc03711726aae9d091570f983d3d74da2dcbca4c5344b0297dd6695a9b
languageName: node
linkType: hard
"@angular/common@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/common@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.2.17
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/3794a790fcff5d8cec17b9a51c6563966bc80667957660515c1eaebd6e384bf7a2d50a8c131a1a85f1c36ed2d88a9695612d6d6fc2356f92294d2da3fadf85ba
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/compiler-cli@npm:19.2.17"
dependencies:
"@babel/core": "npm:7.26.9"
"@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.2.17
typescript: ">=5.5 <5.9"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 10/a4e21b43434f2d2db988f351c6ee629599629a9f99cf3dab348b0a69b2276ca8db4910c42098a65e4699872cb0e598cb5691f10bb8c5a193594d1c6b577793b1
languageName: node
linkType: hard
"@angular/compiler@npm:^19.2.18":
version: 19.2.18
resolution: "@angular/compiler@npm:19.2.18"
dependencies:
tslib: "npm:^2.3.0"
checksum: 10/1b7cb29bb06cc1da6e9a1f813b6d343d62ea801d42b28ed3d990860d1102da475b33765534e4f6274fabf921efdb0b34b204cbf28dcd3133a6b8be31a1e1310a
languageName: node
linkType: hard
"@angular/core@npm:^19.2.18":
version: 19.2.18
resolution: "@angular/core@npm:19.2.18"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
checksum: 10/4e9207638e68c7431c22b17d2f70450e69c74333fec79d2c63a073202a71b46b85f6146b47930f54a29347112a66761e399748cb0260fc39a972ee34d89405d6
languageName: node
linkType: hard
"@angular/forms@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/forms@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.2.17
"@angular/core": 19.2.17
"@angular/platform-browser": 19.2.17
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/836b05a8c08a501338d701c8606b5e677c74485319bc5f1aa59770d733e85064167dff7390b6176fe19a5f4e782a448a8a7d83e73cf702a3343f348c729d1088
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/platform-browser-dynamic@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.2.17
"@angular/compiler": 19.2.17
"@angular/core": 19.2.17
"@angular/platform-browser": 19.2.17
checksum: 10/e40d7df0c300ec6bc1696babe5f40481d91327acbb9098612323066cf91f871ee8c88c37c9434c71f7f9b9a1775344087e93f548684623dd6f18e37b35483649
languageName: node
linkType: hard
"@angular/platform-browser@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/platform-browser@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 19.2.17
"@angular/common": 19.2.17
"@angular/core": 19.2.17
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10/628f0e90a3ab78df2ef412d2e6c31026c9c136fa91bddd4be425e7f82d1b1d0307aabea5c7d25cf24e3a42a574c975844b6c94bbcf078a346a33fa71c482c400
languageName: node
linkType: hard
"@angular/router@npm:^19.2.17":
version: 19.2.17
resolution: "@angular/router@npm:19.2.17"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.2.17
"@angular/core": 19.2.17
"@angular/platform-browser": 19.2.17
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/234faa3d397a37f923a58ec03089c1c06f82f5aa65748d9699b21ac36368ff5f8cfb207b35f6ef5eb16725ca5b6a66c0f629c88082cd5fef3306d667c8c1c551
languageName: node
linkType: hard
"@asamuzakjp/css-color@npm:^3.2.0":
version: 3.2.0
resolution: "@asamuzakjp/css-color@npm:3.2.0"
dependencies:
"@csstools/css-calc": "npm:^2.1.3"
"@csstools/css-color-parser": "npm:^3.0.9"
"@csstools/css-parser-algorithms": "npm:^3.0.4"
"@csstools/css-tokenizer": "npm:^3.0.3"
lru-cache: "npm:^10.4.3"
checksum: 10/870f661460173174fef8bfebea0799ba26566f3aa7b307e5adabb7aae84fed2da68e40080104ed0c83b43c5be632ee409e65396af13bfe948a3ef4c2c729ecd9
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-s3@npm:3.986.0":
version: 3.986.0
resolution: "@aws-sdk/client-s3@npm:3.986.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.973.7"
"@aws-sdk/credential-provider-node": "npm:^3.972.6"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.3"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.3"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.972.5"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.7"
"@aws-sdk/middleware-ssec": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.7"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/signature-v4-multi-region": "npm:3.986.0"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.986.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.5"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.1"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-blob-browser": "npm:^4.2.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/hash-stream-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/md5-js": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.13"
"@smithy/middleware-retry": "npm:^4.4.30"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.9"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.2"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.29"
"@smithy/util-defaults-mode-node": "npm:^4.2.32"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.11"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10/b24dfba49270a33b6fc7738c8b8b64715cd568f8f953e85b88cf2234767d6e2abf465ddde4774a159770039f5f5c3b64b1d2ee1aa8b3206e2e2e4e421b788082
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.338.0, @aws-sdk/client-s3@npm:^3.362.0":
version: 3.896.0
resolution: "@aws-sdk/client-s3@npm:3.896.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.896.0"
"@aws-sdk/credential-provider-node": "npm:3.896.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.893.0"
"@aws-sdk/middleware-expect-continue": "npm:3.893.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.896.0"
"@aws-sdk/middleware-host-header": "npm:3.893.0"
"@aws-sdk/middleware-location-constraint": "npm:3.893.0"
"@aws-sdk/middleware-logger": "npm:3.893.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.893.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.896.0"
"@aws-sdk/middleware-ssec": "npm:3.893.0"
"@aws-sdk/middleware-user-agent": "npm:3.896.0"
"@aws-sdk/region-config-resolver": "npm:3.893.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.896.0"
"@aws-sdk/types": "npm:3.893.0"
"@aws-sdk/util-endpoints": "npm:3.895.0"
"@aws-sdk/util-user-agent-browser": "npm:3.893.0"
"@aws-sdk/util-user-agent-node": "npm:3.896.0"
"@aws-sdk/xml-builder": "npm:3.894.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.12.0"
"@smithy/eventstream-serde-browser": "npm:^4.1.1"
"@smithy/eventstream-serde-config-resolver": "npm:^4.2.1"
"@smithy/eventstream-serde-node": "npm:^4.1.1"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-blob-browser": "npm:^4.1.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/hash-stream-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/md5-js": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.4"
"@smithy/middleware-retry": "npm:^4.3.0"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.4"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.4"
"@smithy/util-defaults-mode-node": "npm:^4.1.4"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.2"
"@smithy/util-stream": "npm:^4.3.2"
"@smithy/util-utf8": "npm:^4.1.0"
"@smithy/util-waiter": "npm:^4.1.1"
"@smithy/uuid": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10/4a65786cd019e0fee172f7da37aab882e39669052e239a284bd1409877c394949779ba909ed5596caa4e12586b9d466099a8d596f8a5019f7eb4bc2dfcf89ba8
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/66343fc13ffd5d412ca2232a91dce14ee287ed611fb27cd1fe887bb36bf380d585c74473251bd9d688fab51b4f9bd4375bf7d8583effb3d07c6ac5f7cb85c597
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/client-sso@npm:3.598.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/6571a678ae4e0c42c245a2e7b969d5d2e4713dc5fe7604e5edc883a6f729362d1256f1c144094f8146e0fd85da675533c0e460c5217b1d17aecb2042201e169e
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.896.0":
version: 3.896.0
resolution: "@aws-sdk/client-sso@npm:3.896.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.896.0"
"@aws-sdk/middleware-host-header": "npm:3.893.0"
"@aws-sdk/middleware-logger": "npm:3.893.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.893.0"
"@aws-sdk/middleware-user-agent": "npm:3.896.0"
"@aws-sdk/region-config-resolver": "npm:3.893.0"
"@aws-sdk/types": "npm:3.893.0"
"@aws-sdk/util-endpoints": "npm:3.895.0"
"@aws-sdk/util-user-agent-browser": "npm:3.893.0"
"@aws-sdk/util-user-agent-node": "npm:3.896.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.12.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.4"
"@smithy/middleware-retry": "npm:^4.3.0"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.4"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.4"
"@smithy/util-defaults-mode-node": "npm:^4.1.4"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.2"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/0358688ecd1ac7ce0d451af66ce9c72ca9f7e750f029f5be4450946b8a07d6f52458262e60fdd6c4817ee94e9337a7235ec9bbe58085c6bfef24ed1641772c81
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.985.0":
version: 3.985.0
resolution: "@aws-sdk/client-sso@npm:3.985.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.7"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.7"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.985.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.5"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.1"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.13"
"@smithy/middleware-retry": "npm:^4.4.30"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.9"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.2"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.29"
"@smithy/util-defaults-mode-node": "npm:^4.2.32"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f78ebb7430eeb2e9d707ea6da7c56743a8e33b5788af2acb2cccc9ed002b3cc84945272f66de846c50e2e5584c7ba54045c24afbf229dbef970af3107d3ecaf8
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.600.0, @aws-sdk/client-sts@npm:^3.338.0":
version: 3.600.0
resolution: "@aws-sdk/client-sts@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/1b955f0ceacdb7e0a0a15ce588aa7b0a796eae8591c195a9a1db601d6efeec504d7ad07189c4baedba0e8e888e4cbab770d6d9e54de9d07d166247f6f0df7c9a
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.986.0":
version: 3.986.0
resolution: "@aws-sdk/client-sts@npm:3.986.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.7"
"@aws-sdk/credential-provider-node": "npm:^3.972.6"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.7"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.986.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.5"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.1"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.13"
"@smithy/middleware-retry": "npm:^4.4.30"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.9"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.2"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.29"
"@smithy/util-defaults-mode-node": "npm:^4.2.32"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/e70daa6b0567ef4ae40b30f3d9380050d8a53a437ce374cb4157ce1f14f745fd8e38ddfee13c5941d89646612276d48bab1ba08fbf29212735f64156e9461276
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/core@npm:3.598.0"
dependencies:
"@smithy/core": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10/6c27302636d6e4c9382590be9d39e1ff2023c92a7aaa78117428d8af9be614ded56c7db2e9a016452144f4f6d81e6b09c81e29ad53df5fa9d506aa0548211f7c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.896.0":
version: 3.896.0
resolution: "@aws-sdk/core@npm:3.896.0"
dependencies:
"@aws-sdk/types": "npm:3.893.0"
"@aws-sdk/xml-builder": "npm:3.894.0"
"@smithy/core": "npm:^3.12.0"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/signature-v4": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.4"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-base64": "npm:^4.1.0"