-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
17762 lines (16114 loc) · 632 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@adobe/css-tools@npm:^4.0.1":
version: 4.3.2
resolution: "@adobe/css-tools@npm:4.3.2"
checksum: 296a03dd29f227c60500d2da8c7f64991fecf1d8b456ce2b4adb8cec7363d9c08b5b03f1463673fc8cbfe54b538745588e7a13c736d2dd14a80c01a20f127f39
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.2.1, @ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1700.10":
version: 0.1700.10
resolution: "@angular-devkit/architect@npm:0.1700.10"
dependencies:
"@angular-devkit/core": "npm:17.0.10"
rxjs: "npm:7.8.1"
checksum: 0afb65c92c9976429f50c1caf50f9b0ed2c3ffe4f6c6e8781b3fa02ba943ffaf19e6082119ebadf427e27e467c6726e3efb0299fe27bbca7b3d7d47de41ccb53
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:~17.0.10":
version: 17.0.10
resolution: "@angular-devkit/build-angular@npm:17.0.10"
dependencies:
"@ampproject/remapping": "npm:2.2.1"
"@angular-devkit/architect": "npm:0.1700.10"
"@angular-devkit/build-webpack": "npm:0.1700.10"
"@angular-devkit/core": "npm:17.0.10"
"@babel/core": "npm:7.23.2"
"@babel/generator": "npm:7.23.0"
"@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.2"
"@babel/plugin-transform-async-to-generator": "npm:7.22.5"
"@babel/plugin-transform-runtime": "npm:7.23.2"
"@babel/preset-env": "npm:7.23.2"
"@babel/runtime": "npm:7.23.2"
"@discoveryjs/json-ext": "npm:0.5.7"
"@ngtools/webpack": "npm:17.0.10"
"@vitejs/plugin-basic-ssl": "npm:1.0.1"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.16"
babel-loader: "npm:9.1.3"
babel-plugin-istanbul: "npm:6.1.1"
browser-sync: "npm:2.29.3"
browserslist: "npm:^4.21.5"
chokidar: "npm:3.5.3"
copy-webpack-plugin: "npm:11.0.0"
critters: "npm:0.0.20"
css-loader: "npm:6.8.1"
esbuild: "npm:0.19.5"
esbuild-wasm: "npm:0.19.5"
fast-glob: "npm:3.3.1"
http-proxy-middleware: "npm:2.0.6"
https-proxy-agent: "npm:7.0.2"
inquirer: "npm:9.2.11"
jsonc-parser: "npm:3.2.0"
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.5"
mini-css-extract-plugin: "npm:2.7.6"
mrmime: "npm:1.0.1"
open: "npm:8.4.2"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:3.0.1"
piscina: "npm:4.1.0"
postcss: "npm:8.4.31"
postcss-loader: "npm:7.3.3"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.69.5"
sass-loader: "npm:13.3.2"
semver: "npm:7.5.4"
source-map-loader: "npm:4.0.1"
source-map-support: "npm:0.5.21"
terser: "npm:5.24.0"
text-table: "npm:0.2.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.6.2"
undici: "npm:5.27.2"
vite: "npm:4.5.1"
webpack: "npm:5.89.0"
webpack-dev-middleware: "npm:6.1.1"
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
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.3"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
jest:
optional: true
jest-environment-jsdom:
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
checksum: 4a26bbc70a66d9428a6157daeb102d7b4843e40a8a140669b6c6edd66fecbd09111f89e40cfd8a4363681d85bcee38f0e6eccbc1c1926529678ff377e299d585
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1700.10":
version: 0.1700.10
resolution: "@angular-devkit/build-webpack@npm:0.1700.10"
dependencies:
"@angular-devkit/architect": "npm:0.1700.10"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
checksum: 059069dc745eec29607693cecd53c75bfdd73c9101d3d5b64c09e21da43320201843541df49b792dd08a547dc8852bc11618d0d10694ce5a52d86f19fd7d06be
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.0.10, @angular-devkit/core@npm:~17.0.10":
version: 17.0.10
resolution: "@angular-devkit/core@npm:17.0.10"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
picomatch: "npm:3.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 300b47436464a2c51f9a5855c21bbc748d731b0ee96c8207d7b594cec74a3336d0f6d4e329921cdb4f99d92f7a70572786f2511f0bfcf2dcba8d7d41eb178ab0
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.0.10, @angular-devkit/schematics@npm:~17.0.10":
version: 17.0.10
resolution: "@angular-devkit/schematics@npm:17.0.10"
dependencies:
"@angular-devkit/core": "npm:17.0.10"
jsonc-parser: "npm:3.2.0"
magic-string: "npm:0.30.5"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 3e21ce9dab0f7812f63c27d4df6726aa8ebec864b9e42a7daed21bd26f977dffc20e7adb29983315dba0366c6f85ed03cfa23e6cd72aeff152427eda200cf5fd
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.0.1":
version: 17.0.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.0.1"
checksum: fc1b80ce654dfdd2f484d4fc18da4a890a700127f9c78783a4f36bfcca5a4aa91cc7c352ca55a793bb8f98c5c2d029d938cf2ff86c5c06b7a552bb9f4c7be93f
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:~17.0.1":
version: 17.0.1
resolution: "@angular-eslint/eslint-plugin-template@npm:17.0.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.0.1"
"@angular-eslint/utils": "npm:17.0.1"
"@typescript-eslint/type-utils": "npm:6.10.0"
"@typescript-eslint/utils": "npm:6.10.0"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 751ba3b5e0c66294c460e73f5c61c04a6d1dc9914fdea2203f9c52796a6227b1606bd89a0e5b6b24efa39813dfabb5689167953bb2ed5718f7e914e2ed02d600
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:~17.0.1":
version: 17.0.1
resolution: "@angular-eslint/eslint-plugin@npm:17.0.1"
dependencies:
"@angular-eslint/utils": "npm:17.0.1"
"@typescript-eslint/utils": "npm:6.10.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 9d393643435cfa61aee464dbc2228055ff73c8b1ccd29b32ee31cbec85866d5b227b8a1189fd226440f40dd3b57ae4ad269c1565306ab343bc3836aea7f3e45e
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:~17.0.1":
version: 17.0.1
resolution: "@angular-eslint/template-parser@npm:17.0.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.0.1"
eslint-scope: "npm:^7.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 20f49e8dd084c852451f4b330c182d5f66149494eed93ce51e6e605727a134912573f4ed701cfcca10a91ad79ed843a3480062b18c84c3b6ef4382c29c952c54
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.0.1":
version: 17.0.1
resolution: "@angular-eslint/utils@npm:17.0.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.0.1"
"@typescript-eslint/utils": "npm:6.10.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: e636a41ea02c19cbac90dbfa20849199095e3d669986320b45c629f889da7d5883e4f891e24744a66e14ae1469c8a728666f73fec8c7eebbdd2cb3ceb2b8fa0a
languageName: node
linkType: hard
"@angular/animations@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/animations@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.9
checksum: e1b4dc118245d6340e6451b741a696c61b56524300c54ad1650b70e2f391619b3fb2bceba93fc4c2288e1717170bacce31907a294b8d01de6d98d66d1a062d54
languageName: node
linkType: hard
"@angular/cdk@npm:~17.0.5":
version: 17.0.5
resolution: "@angular/cdk@npm:17.0.5"
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: 109ce0dea2a48b3098aa16b1e1358898080dd9b1745f516e64a6ec1b76693b8937c92b086879c972ccea9ceb6647e72decbff2febbd59c75103c00b88e93dab8
languageName: node
linkType: hard
"@angular/cli@npm:~17.0.0":
version: 17.0.10
resolution: "@angular/cli@npm:17.0.10"
dependencies:
"@angular-devkit/architect": "npm:0.1700.10"
"@angular-devkit/core": "npm:17.0.10"
"@angular-devkit/schematics": "npm:17.0.10"
"@schematics/angular": "npm:17.0.10"
"@yarnpkg/lockfile": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
ini: "npm:4.1.1"
inquirer: "npm:9.2.11"
jsonc-parser: "npm:3.2.0"
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.4"
resolve: "npm:1.22.8"
semver: "npm:7.5.4"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: 591267fc578e182228bfc6cde535a8a92e09823c42b889d49b34260d005917171a50c0af97b5b5daf0222632027d353ff85c840429e0ae9c7aa96feedeba7295
languageName: node
linkType: hard
"@angular/common@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/common@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.9
rxjs: ^6.5.3 || ^7.4.0
checksum: b7a30570f8abbb78ea30acfc7aec2dbe3d2b145787582a995f617961f1ee7e901111b22a244f08a1980b2ade7fdcb7e610078a2137a6cc14d64a29aaf2bbd5de
languageName: node
linkType: hard
"@angular/compiler-cli@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/compiler-cli@npm:17.0.9"
dependencies:
"@babel/core": "npm:7.23.2"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.1.2"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 17.0.9
typescript: ">=5.2 <5.3"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 5ca5b01722d7b4db7b0fddb1f1f0610bc2c77f782dec0ac3816b3ee95a1dd572c4dec6ac2df0cacdb60c98c4b24204da04ff282d66a55acc48c1fb5758a9a68b
languageName: node
linkType: hard
"@angular/compiler@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/compiler@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.9
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 5d5276b310ad043beab88d697b8bdb7b41ef308f67c3a3702f0a4f407894010408ab1bc06bad97a999bf64c60e34900b00c7c185a1f5fa81dbf3c5b47e4e0c6b
languageName: node
linkType: hard
"@angular/core@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/core@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.0
checksum: c4055b4abbe3f1c291635420de4acaae634c44080cee553c757a6509e676e8dd1f246d41d7cacb92ec4468172b4c65833c0464bc95652d5473f6f67a1f0ba320
languageName: node
linkType: hard
"@angular/forms@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/forms@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.9
"@angular/core": 17.0.9
"@angular/platform-browser": 17.0.9
rxjs: ^6.5.3 || ^7.4.0
checksum: 1c4192797afaebe4678a510d3eb8f0068ce18cf7a1ef77198ee533ea6fb96ea5cc402c5380530947d29617acbf5395a787b574dc402c4b896cf34cd5424b108d
languageName: node
linkType: hard
"@angular/language-service@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/language-service@npm:17.0.9"
checksum: 53460df537e022b26dfbe7ab535fa32f9e4555167b70ee9295f0a22d27942fe10384eedb965fa7037e056b8025fda78d0f59371fc5e4925b7350423aa8ab1fec
languageName: node
linkType: hard
"@angular/material@npm:~17.0.5":
version: 17.0.5
resolution: "@angular/material@npm:17.0.5"
dependencies:
"@material/animation": "npm:15.0.0-canary.a246a4439.0"
"@material/auto-init": "npm:15.0.0-canary.a246a4439.0"
"@material/banner": "npm:15.0.0-canary.a246a4439.0"
"@material/base": "npm:15.0.0-canary.a246a4439.0"
"@material/button": "npm:15.0.0-canary.a246a4439.0"
"@material/card": "npm:15.0.0-canary.a246a4439.0"
"@material/checkbox": "npm:15.0.0-canary.a246a4439.0"
"@material/chips": "npm:15.0.0-canary.a246a4439.0"
"@material/circular-progress": "npm:15.0.0-canary.a246a4439.0"
"@material/data-table": "npm:15.0.0-canary.a246a4439.0"
"@material/density": "npm:15.0.0-canary.a246a4439.0"
"@material/dialog": "npm:15.0.0-canary.a246a4439.0"
"@material/dom": "npm:15.0.0-canary.a246a4439.0"
"@material/drawer": "npm:15.0.0-canary.a246a4439.0"
"@material/elevation": "npm:15.0.0-canary.a246a4439.0"
"@material/fab": "npm:15.0.0-canary.a246a4439.0"
"@material/feature-targeting": "npm:15.0.0-canary.a246a4439.0"
"@material/floating-label": "npm:15.0.0-canary.a246a4439.0"
"@material/form-field": "npm:15.0.0-canary.a246a4439.0"
"@material/icon-button": "npm:15.0.0-canary.a246a4439.0"
"@material/image-list": "npm:15.0.0-canary.a246a4439.0"
"@material/layout-grid": "npm:15.0.0-canary.a246a4439.0"
"@material/line-ripple": "npm:15.0.0-canary.a246a4439.0"
"@material/linear-progress": "npm:15.0.0-canary.a246a4439.0"
"@material/list": "npm:15.0.0-canary.a246a4439.0"
"@material/menu": "npm:15.0.0-canary.a246a4439.0"
"@material/menu-surface": "npm:15.0.0-canary.a246a4439.0"
"@material/notched-outline": "npm:15.0.0-canary.a246a4439.0"
"@material/radio": "npm:15.0.0-canary.a246a4439.0"
"@material/ripple": "npm:15.0.0-canary.a246a4439.0"
"@material/rtl": "npm:15.0.0-canary.a246a4439.0"
"@material/segmented-button": "npm:15.0.0-canary.a246a4439.0"
"@material/select": "npm:15.0.0-canary.a246a4439.0"
"@material/shape": "npm:15.0.0-canary.a246a4439.0"
"@material/slider": "npm:15.0.0-canary.a246a4439.0"
"@material/snackbar": "npm:15.0.0-canary.a246a4439.0"
"@material/switch": "npm:15.0.0-canary.a246a4439.0"
"@material/tab": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-bar": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-indicator": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-scroller": "npm:15.0.0-canary.a246a4439.0"
"@material/textfield": "npm:15.0.0-canary.a246a4439.0"
"@material/theme": "npm:15.0.0-canary.a246a4439.0"
"@material/tooltip": "npm:15.0.0-canary.a246a4439.0"
"@material/top-app-bar": "npm:15.0.0-canary.a246a4439.0"
"@material/touch-target": "npm:15.0.0-canary.a246a4439.0"
"@material/typography": "npm:15.0.0-canary.a246a4439.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^17.0.0 || ^18.0.0
"@angular/cdk": 17.0.5
"@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: 952e973857983b63da057811fb0c3ecfff7e155b4d1261cdc0f222781aa9942282561123ad0e6f52a9228ec587a6638349773023df1492f2e67b68477cbbc28a
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/platform-browser-dynamic@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.9
"@angular/compiler": 17.0.9
"@angular/core": 17.0.9
"@angular/platform-browser": 17.0.9
checksum: e4133829f03834e2f72eb234d6bd96af8aac87fad85a550a8074747a07e06ab7605cc92037c80750a2db7333ffb381f935a3472f0ee4bf2cfaaa3bbba17b65e3
languageName: node
linkType: hard
"@angular/platform-browser@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/platform-browser@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 17.0.9
"@angular/common": 17.0.9
"@angular/core": 17.0.9
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 042de59c4c8fe419af4856e3f5ae9ddfadfea7473e8e225ccc4300f8e824b3244a3cf71061848b749dd276ca5a14b247340b4ced6c98fc27e3b43356d7624046
languageName: node
linkType: hard
"@angular/platform-server@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/platform-server@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
xhr2: "npm:^0.2.0"
peerDependencies:
"@angular/animations": 17.0.9
"@angular/common": 17.0.9
"@angular/compiler": 17.0.9
"@angular/core": 17.0.9
"@angular/platform-browser": 17.0.9
checksum: f01b7ff5bf55d2b01086c79b6cf712c05e442a7370da3bb5bfbe891ca08af727d0423e3a8636053a5795a495199f6c18993c6f004bab58397de3fec1e6410c66
languageName: node
linkType: hard
"@angular/router@npm:~17.0.9":
version: 17.0.9
resolution: "@angular/router@npm:17.0.9"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.9
"@angular/core": 17.0.9
"@angular/platform-browser": 17.0.9
rxjs: ^6.5.3 || ^7.4.0
checksum: fbb73673df573bd89e3e54fbfb89735570551c930f54330edb69c6977284e8b67724d1b77df92881ceef31e104e2e3f3c81acad07db0d64b69d7ed5f1f605bfa
languageName: node
linkType: hard
"@angular/ssr@npm:~17.0.10":
version: 17.0.10
resolution: "@angular/ssr@npm:17.0.10"
dependencies:
critters: "npm:0.0.20"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^17.0.0
"@angular/core": ^17.0.0
checksum: 8160c87cf632dea8dab5f8bddd6c93de6258d74b2825617248d8c5359c4923f88adf92e74439e310d78da2c60c4a615a32fc3985ac93c1629b9e335740754eff
languageName: node
linkType: hard
"@assemblyscript/loader@npm:^0.10.1":
version: 0.10.1
resolution: "@assemblyscript/loader@npm:0.10.1"
checksum: 70bd0c9dc4f63d5d2b3b9d94239507320623b1bd83fc758306e64a6fe616c8e589586edcaeb92772bbf3c6379233f26d9c1b4830d23ddba64fd1d922a47577d5
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.2, @babel/compat-data@npm:^7.23.3, @babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 081278ed46131a890ad566a59c61600a5f9557bd8ee5e535890c8548192532ea92590742fd74bd9db83d74c669ef8a04a7e1c85cdea27f960233e3b83c3a957c
languageName: node
linkType: hard
"@babel/core@npm:7.23.2":
version: 7.23.2
resolution: "@babel/core@npm:7.23.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.0"
"@babel/helper-compilation-targets": "npm:^7.22.15"
"@babel/helper-module-transforms": "npm:^7.23.0"
"@babel/helpers": "npm:^7.23.2"
"@babel/parser": "npm:^7.23.0"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.2"
"@babel/types": "npm:^7.23.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 14ad6e0a3ac0085dc008e7fb0c8513f0a3e39f2ab883a964a89ef1311338d49cf085c94cb6165c07fdec0fdcc6e865ce4811253c479f9f45ac375226dfe3ad3b
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.22.9":
version: 7.23.7
resolution: "@babel/core@npm:7.23.7"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.7"
"@babel/parser": "npm:^7.23.6"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.7"
"@babel/types": "npm:^7.23.6"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 38c9934973d384ed83369712978453eac91dc3f22167404dbdb272b64f602e74728a6f37012c53ee57e521b8ae2da60097f050497d9b6a212d28b59cdfb2cd1d
languageName: node
linkType: hard
"@babel/generator@npm:7.23.0":
version: 7.23.0
resolution: "@babel/generator@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: b7d8727c574119b5ef06e5d5d0d8d939527d51537db4b08273caebb18f3f2b1d4517b874776085e161fd47d28f26b22c08e7f270b64f43b2afd4a60c5936d6cd
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.23.6, @babel/generator@npm:^7.7.2":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 53540e905cd10db05d9aee0a5304e36927f455ce66f95d1253bb8a179f286b88fa7062ea0db354c566fe27f8bb96567566084ffd259f8feaae1de5eccc8afbda
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:7.22.5, @babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 2535e3824ca6337f65786bbac98e562f71699f25532cecd196f027d7698b4967a96953d64e36567956658ad1a05ccbdc62d1ba79ee751c79f4f1d2d3ecc2e01c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.23.6, @babel/helper-create-class-features-plugin@npm:^7.23.7":
version: 7.23.7
resolution: "@babel/helper-create-class-features-plugin@npm:7.23.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.20"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: f594e99f97211bda5530756712751c1c4ce6063bb376f1f38cc540309a086bd0f4b62aff969ddb29e7310e936c2d3745934a2b292c4710be8112e57fbe3f3381
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.4.4":
version: 0.4.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.4.4"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 60126f5f719b9e2114df62e3bf3ac0797b71d8dc733db60192eb169b004fde72ee309fa5848c5fdfe98b8e8863c46f55e16da5aa8a4e420b4d2670cd0c5dd708
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.22.15, @babel/helper-member-expression-to-functions@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
checksum: b810daddf093ffd0802f1429052349ed9ea08ef7d0c56da34ffbcdecbdafac86f95bdea2fe30e0e0e629febc7dd41b56cb5eacc10d1a44336d37b755dac31fa4
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 4e0d7fc36d02c1b8c8b3006dfbfeedf7a367d3334a04934255de5128115ea0bafdeb3e5736a2559917f0653e4e437400d54542da0468e08d3cbc86d3bbfa8f30
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.0, @babel/helper-module-transforms@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/helper-module-transforms@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 211e1399d0c4993671e8e5c2b25383f08bee40004ace5404ed4065f0e9258cc85d99c1b82fd456c030ce5cfd4d8f310355b54ef35de9924eabfc3dff1331d946
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: d2c4bfe2fa91058bcdee4f4e57a3f4933aed7af843acfd169cd6179fab8d13c1d636474ecabb2af107dc77462c7e893199aa26632bac1c6d7e025a17cbb9d20d
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.22.20, @babel/helper-remap-async-to-generator@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-wrap-function": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-replace-supers@npm:7.22.20"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-member-expression-to-functions": "npm:^7.22.15"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6b0858811ad46873817c90c805015d63300e003c5a85c147a17d9845fa2558a02047c3cc1f07767af59014b2dd0fa75b503e5bc36e917f360e9b67bb6f1e79f4
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:7.22.6, @babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: d83e4b623eaa9622c267d3c83583b72f3aac567dc393dda18e559d79187961cb29ae9c57b2664137fc3d19508370b12ec6a81d28af73a50e0846819cb21c6e44
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: f348d5637ad70b6b54b026d6544bd9040f78d24e7ec245a0fc42293968181f6ae9879c22d89744730d246ce8ec53588f716f102addd4df8bbc79b73ea10004ac
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.15, @babel/helper-validator-option@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/helper-validator-option@npm:7.23.5"
checksum: af45d5c0defb292ba6fd38979e8f13d7da63f9623d8ab9ededc394f67eb45857d2601278d151ae9affb6e03d5d608485806cd45af08b4468a0515cf506510e94
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-wrap-function@npm:7.22.20"
dependencies:
"@babel/helper-function-name": "npm:^7.22.5"
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.22.19"
checksum: 97b5f42ff4d305318ff2f99a5f59d3e97feff478333b2d893c4f85456d3c66372070f71d7bf9141f598c8cf2741c49a15918193633c427a88d170d98eb8c46eb
languageName: node
linkType: hard
"@babel/helpers@npm:^7.23.2, @babel/helpers@npm:^7.23.7":
version: 7.23.8
resolution: "@babel/helpers@npm:7.23.8"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.7"
"@babel/types": "npm:^7.23.6"
checksum: d9fce49278a31aaa017a40c1fcdaa450999c49e33582cce8138058c58b1acbe3a2d2488f010f28e91dedf0d35795ea32f0ee18745bbb6c7f54052ae0fd7e6a3f
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/parser@npm:7.23.6"
bin:
parser: ./bin/babel-parser.js
checksum: 6f76cd5ccae1fa9bcab3525b0865c6222e9c1d22f87abc69f28c5c7b2c8816a13361f5bd06bddbd5faf903f7320a8feba02545c981468acec45d12a03db7755e
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.15, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 356a4e9fc52d7ca761ce6857fc58e2295c2785d22565760e6a5680be86c6e5883ab86e0ba25ef572882c01713d3a31ae6cfa3e3222cdb95e6026671dab1fa415
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.15, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/plugin-transform-optional-chaining": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.13.0
checksum: a8785f099d55ca71ed89815e0f3a636a80c16031f80934cfec17c928d096ee0798964733320c8b145ef36ba429c5e19d5107b06231e0ab6777cfb0f01adfdc23
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.7":
version: 7.23.7
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.23.7"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 355746e21ad7f43e4f4daef54cfe2ef461ecd19446b2afedd53c39df1bf9aa2eeeeaabee2279b1321de89a97c9360e4f76e9ba950fee50ff1676c25f6929d625
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.22.7":
version: 7.23.7
resolution: "@babel/plugin-proposal-decorators@npm:7.23.7"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.23.7"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-decorators": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 49457b186d3ac5130ed27bc3af1fcfbca495d6e68ad9e800cd0cfefc0720158563db170ca5c99f03cfe12ff2affc088eeaba7d766b2d9c0538e2a85e21e557ed
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
version: 7.21.0-placeholder-for-preset-env.2
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-syntax-decorators@npm:7.23.3"