-
Notifications
You must be signed in to change notification settings - Fork 5
/
yarn.lock
18379 lines (16701 loc) · 657 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
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@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: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1703.9":
version: 0.1703.9
resolution: "@angular-devkit/architect@npm:0.1703.9"
dependencies:
"@angular-devkit/core": "npm:17.3.9"
rxjs: "npm:7.8.1"
checksum: 10c0/ae1fd40d3524a84e3ddd09e0446b8986b814abcb1a0bc75e647135cd46bb674a4c0562b6bb2af7b6659967e0c54f4bf1ac4c69a7f0e9e895bb9ea4a6d66ebd88
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^17.0.8":
version: 17.3.9
resolution: "@angular-devkit/build-angular@npm:17.3.9"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1703.9"
"@angular-devkit/build-webpack": "npm:0.1703.9"
"@angular-devkit/core": "npm:17.3.9"
"@babel/core": "npm:7.24.0"
"@babel/generator": "npm:7.23.6"
"@babel/helper-annotate-as-pure": "npm:7.22.5"
"@babel/helper-split-export-declaration": "npm:7.22.6"
"@babel/plugin-transform-async-generator-functions": "npm:7.23.9"
"@babel/plugin-transform-async-to-generator": "npm:7.23.3"
"@babel/plugin-transform-runtime": "npm:7.24.0"
"@babel/preset-env": "npm:7.24.0"
"@babel/runtime": "npm:7.24.0"
"@discoveryjs/json-ext": "npm:0.5.7"
"@ngtools/webpack": "npm:17.3.9"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.18"
babel-loader: "npm:9.1.3"
babel-plugin-istanbul: "npm:6.1.1"
browserslist: "npm:^4.21.5"
copy-webpack-plugin: "npm:11.0.0"
critters: "npm:0.0.22"
css-loader: "npm:6.10.0"
esbuild: "npm:0.20.1"
esbuild-wasm: "npm:0.20.1"
fast-glob: "npm:3.3.2"
http-proxy-middleware: "npm:2.0.6"
https-proxy-agent: "npm:7.0.4"
inquirer: "npm:9.2.15"
jsonc-parser: "npm:3.2.1"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.0"
less-loader: "npm:11.1.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.2.1"
magic-string: "npm:0.30.8"
mini-css-extract-plugin: "npm:2.8.1"
mrmime: "npm:2.0.0"
open: "npm:8.4.2"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.1"
piscina: "npm:4.4.0"
postcss: "npm:8.4.35"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.71.1"
sass-loader: "npm:14.1.1"
semver: "npm:7.6.0"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.29.1"
tree-kill: "npm:1.2.2"
tslib: "npm:2.6.2"
undici: "npm:6.11.1"
vite: "npm:5.1.7"
watchpack: "npm:2.4.0"
webpack: "npm:5.94.0"
webpack-dev-middleware: "npm:6.1.2"
webpack-dev-server: "npm:4.15.1"
webpack-merge: "npm:5.10.0"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^17.0.0
"@angular/localize": ^17.0.0
"@angular/platform-server": ^17.0.0
"@angular/service-worker": ^17.0.0
"@web/test-runner": ^0.18.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^17.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.2 <5.5"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
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: 10c0/593ffee7a76018c364c355868846eaf53d8eea60b176078217969c4abdd7b336da5a67e6df284ff3b10cbbf30c82fb3b939c9e4fac8839012e7a11e99ad029a1
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1703.9":
version: 0.1703.9
resolution: "@angular-devkit/build-webpack@npm:0.1703.9"
dependencies:
"@angular-devkit/architect": "npm:0.1703.9"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
checksum: 10c0/684acbed2b35eca6467dc14a84ac6c30e2b84243965dec4d5a8ce3605858e9ab4bb7cfffc48ed679c7939e10ff26391a75afb08a0c1ecfa6145a27191cbf42aa
languageName: node
linkType: hard
"@angular-devkit/core@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/core@npm:16.0.1"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/061e9248f43dbbe11a74ccebe01152a93f1ebd43463f503d92bdb1bab8369a3568147b0b92ef4f285b8782f07532db62b83b639322479301e28fa606859fbccc
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.3.8":
version: 17.3.8
resolution: "@angular-devkit/core@npm:17.3.8"
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: 10c0/9a5efd90247820cc469ab9773c28405873b4716528ea0873e8ab3e442280e6a631972247b74dc61ec88b3a1f689af0aa1318115bf50496045c1f5ac9476820d9
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.3.9":
version: 17.3.9
resolution: "@angular-devkit/core@npm:17.3.9"
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: 10c0/0f135909581ea681f71b8ec60e5c574d56d05567bc23c24c22f52fb2586308c065906c262d7b664786b85313a1817a1074a0930d0048d3a864c38ec3a5ac1e63
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/schematics-cli@npm:16.0.1"
dependencies:
"@angular-devkit/core": "npm:16.0.1"
"@angular-devkit/schematics": "npm:16.0.1"
ansi-colors: "npm:4.1.3"
inquirer: "npm:8.2.4"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
schematics: bin/schematics.js
checksum: 10c0/cd151fb25b93d6f3d543dc2c2a4f1bf83f9f0361c327583900e7d64d8583fd75b36b7bab878f9dc3f18ba6ad055713fecddd7711be3a2c5fee0d3d3c2c782b3d
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:17.3.8":
version: 17.3.8
resolution: "@angular-devkit/schematics-cli@npm:17.3.8"
dependencies:
"@angular-devkit/core": "npm:17.3.8"
"@angular-devkit/schematics": "npm:17.3.8"
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: 10c0/bbd7692e0ac2b8f9a5fda8ccafd94a08475e6b4a304580a581dabbeb7b8c8db1934c7ae3eab7bed059862170c62045133800fcfe12cfb8f57700aba3a6aebf37
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/schematics@npm:16.0.1"
dependencies:
"@angular-devkit/core": "npm:16.0.1"
jsonc-parser: "npm:3.2.0"
magic-string: "npm:0.30.0"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/26f6ef07ced08273ad9384867c92d4b295a013115355597306e84da1d3445dc41f90f9046dbe7024b7ed568f20dd4e28c070b59f10f0dea8e44cbe9f31825408
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.3.8":
version: 17.3.8
resolution: "@angular-devkit/schematics@npm:17.3.8"
dependencies:
"@angular-devkit/core": "npm:17.3.8"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.8"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/19c88446b2d82c6f1e14343287c9e9c9cb17edd3d3147346124fb2deadcb836b6da4026b368f87b252e7a5b5b2fe7875e4468bc38a3778ca126412d4ba1c6030
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.3.9":
version: 17.3.9
resolution: "@angular-devkit/schematics@npm:17.3.9"
dependencies:
"@angular-devkit/core": "npm:17.3.9"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.8"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/e59e6661599c265359f1d01f5ee78c2d77d59f341524096088a9fa26feba847a40f663e733700abb6a8c2e43f830ad20d854548bca4660dd2886cdd5e8ef9ce4
languageName: node
linkType: hard
"@angular-material-components/color-picker@npm:^16.0.1":
version: 16.0.1
resolution: "@angular-material-components/color-picker@npm:16.0.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/cdk": ^16.0.0
"@angular/common": ^16.0.0
"@angular/core": ^16.0.0
"@angular/forms": ^16.0.0
"@angular/material": ^16.0.0
"@angular/platform-browser": ^16.0.0
checksum: 10c0/73ef1c0fa01c96cd6b221caeb27c9df1775909fde3414b201ac0ca80971ca5c104d35a363f676eda36bb0d111ffde11023c6b654b761f0e0078c327d4f1fab58
languageName: node
linkType: hard
"@angular/animations@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/animations@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.3.12
checksum: 10c0/f9662a309a75494cf89d0772499cea3d626befb333c072f6a0a85b3ccf5d30a0d97162e281df16a7a2fc9a080bfb0e082ad1f7889eb6cccac3ac4690b4ad1705
languageName: node
linkType: hard
"@angular/cdk@npm:^17.0.4":
version: 17.3.10
resolution: "@angular/cdk@npm:17.3.10"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: 10c0/96c57b39007346ce2d1f6ad369bca3b9017354965e5a212561f25e59b82fccf5e6791d995a043f2d55e6840c9c5996205bdd0713eb448c2f3702a35d270d6b0c
languageName: node
linkType: hard
"@angular/cli@npm:^17.0.8":
version: 17.3.9
resolution: "@angular/cli@npm:17.3.9"
dependencies:
"@angular-devkit/architect": "npm:0.1703.9"
"@angular-devkit/core": "npm:17.3.9"
"@angular-devkit/schematics": "npm:17.3.9"
"@schematics/angular": "npm:17.3.9"
"@yarnpkg/lockfile": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
ini: "npm:4.1.2"
inquirer: "npm:9.2.15"
jsonc-parser: "npm:3.2.1"
npm-package-arg: "npm:11.0.1"
npm-pick-manifest: "npm:9.0.0"
open: "npm:8.4.2"
ora: "npm:5.4.1"
pacote: "npm:17.0.6"
resolve: "npm:1.22.8"
semver: "npm:7.6.0"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: 10c0/1baffc50f6ecb573398a2c8f5fd95215fe7d279e020e9db8051edc2c6c877e991c542c8595a9ce9c942804404d097f6b6052a35dc0995fa610d1406554d8e4d8
languageName: node
linkType: hard
"@angular/common@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/common@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.3.12
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/f40d76081b04bacb3efd4389b0aa4dcfa742a4954e38a76a434dab1ae226b3192241077be5d0032cb011cc1625cb04043449cd5956f8ba44da99f8f7a3bbe83a
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/compiler-cli@npm:17.3.12"
dependencies:
"@babel/core": "npm:7.23.9"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.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": 17.3.12
typescript: ">=5.2 <5.5"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 10c0/d4b82fa2ad898c6711c4235025915179afe9b2ed2d30e95c26f3ba4d00f980862e42602f2782517a1b145300bde9ff4c9a306bc1a375d4f9d32850c72fa419cf
languageName: node
linkType: hard
"@angular/compiler@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/compiler@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.3.12
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10c0/e044b2cdd30deb43eda84b49ec0c9261d1745517927b0a7eacf0f1390ba9c8463a78945e10d888f209344085cde6d99495431f4c5401af412876e0e2141797b3
languageName: node
linkType: hard
"@angular/core@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/core@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.0
checksum: 10c0/0a2119daf7efdb81660c81dee1476b14e1f5456aee94e3f504cfbc1d98107dd7716374f9594837a5789d004b5c4b49aa7c553ef0dc87797cd581628bbfcd6858
languageName: node
linkType: hard
"@angular/forms@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/forms@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.3.12
"@angular/core": 17.3.12
"@angular/platform-browser": 17.3.12
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/8cfaacc477e2c1ba2cea98729e71e89c8b21b93ca69699c75dba4e6fe8a42dfe050045f9dc52d99664e6b3c91f26f95d60cd3be092cc7196292ffc4aeb4d7034
languageName: node
linkType: hard
"@angular/localize@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/localize@npm:17.3.12"
dependencies:
"@babel/core": "npm:7.23.9"
"@types/babel__core": "npm:7.20.5"
fast-glob: "npm:3.3.2"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 17.3.12
"@angular/compiler-cli": 17.3.12
bin:
localize-extract: tools/bundles/src/extract/cli.js
localize-migrate: tools/bundles/src/migrate/cli.js
localize-translate: tools/bundles/src/translate/cli.js
checksum: 10c0/adae92a400fb5ec35e5599d60f57bfdbf498cbb411f58cca47f94bb58b8f07713b3053b733972a59c961a0539602572f17a32a98c57a6e726e498fe1272cf7ab
languageName: node
linkType: hard
"@angular/material-moment-adapter@npm:^17.2.0":
version: 17.3.10
resolution: "@angular/material-moment-adapter@npm:17.3.10"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/material": 17.3.10
moment: ^2.18.1
checksum: 10c0/6a1c01fa05878d39060b63f11fc8234ad1341639bfc987c964342fe0383097fc33e3c0ff3ab1c53ec475eb1ed7a34923fe3e9d8ecb852f76ca4fa4ba19550dcf
languageName: node
linkType: hard
"@angular/material@npm:^17.0.4":
version: 17.3.10
resolution: "@angular/material@npm:17.3.10"
dependencies:
"@material/animation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/auto-init": "npm:15.0.0-canary.7f224ddd4.0"
"@material/banner": "npm:15.0.0-canary.7f224ddd4.0"
"@material/base": "npm:15.0.0-canary.7f224ddd4.0"
"@material/button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/card": "npm:15.0.0-canary.7f224ddd4.0"
"@material/checkbox": "npm:15.0.0-canary.7f224ddd4.0"
"@material/chips": "npm:15.0.0-canary.7f224ddd4.0"
"@material/circular-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/data-table": "npm:15.0.0-canary.7f224ddd4.0"
"@material/density": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dialog": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dom": "npm:15.0.0-canary.7f224ddd4.0"
"@material/drawer": "npm:15.0.0-canary.7f224ddd4.0"
"@material/elevation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/fab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/feature-targeting": "npm:15.0.0-canary.7f224ddd4.0"
"@material/floating-label": "npm:15.0.0-canary.7f224ddd4.0"
"@material/form-field": "npm:15.0.0-canary.7f224ddd4.0"
"@material/icon-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/image-list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/layout-grid": "npm:15.0.0-canary.7f224ddd4.0"
"@material/line-ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/linear-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu-surface": "npm:15.0.0-canary.7f224ddd4.0"
"@material/notched-outline": "npm:15.0.0-canary.7f224ddd4.0"
"@material/radio": "npm:15.0.0-canary.7f224ddd4.0"
"@material/ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/rtl": "npm:15.0.0-canary.7f224ddd4.0"
"@material/segmented-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/select": "npm:15.0.0-canary.7f224ddd4.0"
"@material/shape": "npm:15.0.0-canary.7f224ddd4.0"
"@material/slider": "npm:15.0.0-canary.7f224ddd4.0"
"@material/snackbar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/switch": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-indicator": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-scroller": "npm:15.0.0-canary.7f224ddd4.0"
"@material/textfield": "npm:15.0.0-canary.7f224ddd4.0"
"@material/theme": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tooltip": "npm:15.0.0-canary.7f224ddd4.0"
"@material/top-app-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/touch-target": "npm:15.0.0-canary.7f224ddd4.0"
"@material/typography": "npm:15.0.0-canary.7f224ddd4.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^17.0.0 || ^18.0.0
"@angular/cdk": 17.3.10
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/forms": ^17.0.0 || ^18.0.0
"@angular/platform-browser": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/4d2a1198451e3c82a722fb486dcb812f5cd758926c61191cfa398c6a7e0a6fef8dfe80f59049f46bae16c9bbd380fb124657a4c9f306efee8b08f679203aafc7
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/platform-browser-dynamic@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.3.12
"@angular/compiler": 17.3.12
"@angular/core": 17.3.12
"@angular/platform-browser": 17.3.12
checksum: 10c0/0fe566569cffc032ac1c334b0492ce2dbeb1c644d3655ec6c693346246f199e18d6a0ef19394aaf0713537defa20e0f43cfc9729d017177f05b986d15d4b811b
languageName: node
linkType: hard
"@angular/platform-browser@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/platform-browser@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 17.3.12
"@angular/common": 17.3.12
"@angular/core": 17.3.12
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/ef0066f481920b4c778f7b342145790a6486f59faba4b88ad3216edb9e207f9a25d607d90e5b911654d092bf772261ab31de3c918a7b73fe8a507bdb6bfe54e1
languageName: node
linkType: hard
"@angular/router@npm:^17.0.8":
version: 17.3.12
resolution: "@angular/router@npm:17.3.12"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.3.12
"@angular/core": 17.3.12
"@angular/platform-browser": 17.3.12
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/b7d832804daa6c0777a2a09b4a53ae8c797e92e4224cc089bf8c05fb767b714c64e9feecaa5f0d4e3f72e86c487eddb23ebc0dc7a1a960b24e0ce96db99b4610
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: 10c0/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: 10c0/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: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@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: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.637.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.637.0"
"@aws-sdk/client-sts": "npm:3.637.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f41b40df6128ce492149b6c89caf141d65c328293919d94f31fffe0104dbb479b2a48e3e816ce438652b7fb0608a720b8e619c158fd68107cada8628793014c5
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.637.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.637.0
checksum: 10c0/eb3af482e6eb9b44549343da62dd761259afc71a8a4c7c6883f2cafadf96da2e54ac97cc1c9757ba43ea9258b4af50d114f20fb186f52109a10642178fa127a1
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sso@npm:3.637.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fff543452d559d92cc9caf45b62ef5114e0929d23a680016a25cce6f4f17cda40bee5535f9b877a76d8563de87ad582788c13e49559cff9264c90540fd5ae32a
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sts@npm:3.637.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.637.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e3d7497ed65fa8617116c65926eb864ddb826267ef7db378c75d1288b4e6454909ed2dcd5eb8e1dad274359a5e9114c2e95bb9269d0dca7fc71a617c94a50075
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/core@npm:3.635.0"
dependencies:
"@smithy/core": "npm:^2.4.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/6f9a9a7dba32279a4f3970fee52845ef06509ffd414a1405c5d1a81e9b68d39dff8fe17c8f88d0e5516683c33f7a1d2b56432ebd8c540f86abfff782218e6f35
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.637.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.637.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1ca62420c28fa95ba0e310f129b8cea86f0c956a432a9edfba9a45c08506e0a73c42501d2bf7407cf8509891efdb65149a7f58e59c5e97536eb43e1463a590a8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-env@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/25156df7c0e9a1423f261276506fc5766c9f43c41e811adaa0f9a6199b03ff4fd299e9dd94fd73942ab99283b30d8e127692ae371c16917f6709f655de401874
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/credential-provider-http@npm:3.635.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.1.3"
tslib: "npm:^2.6.2"
checksum: 10c0/3a232fdece1cbe7e9ec740287702dfaa640392e827d31b5c8a23d59ab9dcf2424408a43a6ef2cf3c94e72ec5612f61651cb7cac92458c5b2c93754f6b7989daf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.637.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.635.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.637.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.637.0
checksum: 10c0/ecabf423d448c0e0d668887b01008c99959a7e51e19a494eb1b9e8198aaffa634df063f4f9436d3f43c74e998090139de7f048946eb465d2c8188ae84838d3a2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-node@npm:3.637.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.635.0"
"@aws-sdk/credential-provider-ini": "npm:3.637.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.637.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ec61181866ca024c31d6316689d1df2192713b23f4b1f8aa4c8479ecc6d0ea5d025edb595d2311d328637073b2557b240be418259766cfb8da9db0acd647bb03
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-process@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d33bf3e5e73f16c8e58dc71a738cdcbcf48b54610e464affc69c73f9bdcc2b287b6cb281c9a719f67298fb0cd795e67201e5d6704dcc24933e71e58653607992
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.637.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.637.0"
"@aws-sdk/token-providers": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7381f31ca6f2518c45467cd4ca036c5efc59f31905ebfed52b91ff151406972fc7968e360aa19c7978631ecf301841368f9807037b52322a7c0e7143c93d58ba
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.621.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.621.0
checksum: 10c0/c699a60e242cc3895b3536a0a4818560f167b6c0cc3e8858cf75cd0438020a070b2e5c84e59280ee81679d865516dcde5b31cf6af1ee35b0d28c94b68c63f742
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.186.0":
version: 3.637.0
resolution: "@aws-sdk/credential-providers@npm:3.637.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.637.0"
"@aws-sdk/client-sso": "npm:3.637.0"
"@aws-sdk/client-sts": "npm:3.637.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.637.0"
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.635.0"
"@aws-sdk/credential-provider-ini": "npm:3.637.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.637.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/13a182727727baa71196d65732a5a9acb5d1aa9e3f83f788e3c1311165b1d3b799be241b4c3e28d7a53d18bf73e38153ca82c2c0b511753ae9e250db9ce1a093
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-host-header@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/221e8e440fc156bc0ef8d2186bc3b9c18c7874cb275ae714c3c7eeb934b846e1291c3cb9a3631c486a86189a4c446e61c64e8e7d737f209fe63808ad313bd779
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-logger@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e8d110552fee03c5290f94be8da8bb6c07404c06c68971cf24c89a5a4e08b93f6039a2bf729b173855815dd13e382eda18c31e098e7a40db9c8163b74a7770e7
languageName: node
linkType: hard