-
Notifications
You must be signed in to change notification settings - Fork 8
/
yarn.lock
10653 lines (9616 loc) · 375 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
"@adobe/css-tools@npm:^4.0.1":
version: 4.3.3
resolution: "@adobe/css-tools@npm:4.3.3"
checksum: e76e712df713964b87cdf2aca1f0477f19bebd845484d5fcba726d3ec7782366e2f26ec8cb2dcfaf47081a5c891987d8a9f5c3f30d11e1eb3c1848adc27fcb24
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.2.0, @ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: d267d8def81d75976bed4f1f81418a234a75338963ed0b8565342ef3918b07e9043806eb3a1736df7ac0774edb98e2890f880bba42817f800495e4ae3fac995e
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1402.13":
version: 0.1402.13
resolution: "@angular-devkit/architect@npm:0.1402.13"
dependencies:
"@angular-devkit/core": "npm:14.2.13"
rxjs: "npm:6.6.7"
checksum: 01ba958172ee34c31cae0639b2e10b20b7e1a1f0e76e68b01fbd6406ab2c4c0cffbe9c00e8cb9194d83f17787612043c86a6ba121d8376d90928477e4a69896f
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^14.2.6":
version: 14.2.13
resolution: "@angular-devkit/build-angular@npm:14.2.13"
dependencies:
"@ampproject/remapping": "npm:2.2.0"
"@angular-devkit/architect": "npm:0.1402.13"
"@angular-devkit/build-webpack": "npm:0.1402.13"
"@angular-devkit/core": "npm:14.2.13"
"@babel/core": "npm:7.18.10"
"@babel/generator": "npm:7.18.12"
"@babel/helper-annotate-as-pure": "npm:7.18.6"
"@babel/plugin-proposal-async-generator-functions": "npm:7.18.10"
"@babel/plugin-transform-async-to-generator": "npm:7.18.6"
"@babel/plugin-transform-runtime": "npm:7.18.10"
"@babel/preset-env": "npm:7.18.10"
"@babel/runtime": "npm:7.18.9"
"@babel/template": "npm:7.18.10"
"@discoveryjs/json-ext": "npm:0.5.7"
"@ngtools/webpack": "npm:14.2.13"
ansi-colors: "npm:4.1.3"
babel-loader: "npm:8.2.5"
babel-plugin-istanbul: "npm:6.1.1"
browserslist: "npm:^4.9.1"
cacache: "npm:16.1.2"
copy-webpack-plugin: "npm:11.0.0"
critters: "npm:0.0.16"
css-loader: "npm:6.7.1"
esbuild: "npm:0.15.5"
esbuild-wasm: "npm:0.15.5"
glob: "npm:8.0.3"
https-proxy-agent: "npm:5.0.1"
inquirer: "npm:8.2.4"
jsonc-parser: "npm:3.1.0"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.1.3"
less-loader: "npm:11.0.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.2.1"
mini-css-extract-plugin: "npm:2.6.1"
minimatch: "npm:5.1.0"
open: "npm:8.4.0"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:6.0.1"
piscina: "npm:3.2.0"
postcss: "npm:8.4.31"
postcss-import: "npm:15.0.0"
postcss-loader: "npm:7.0.1"
postcss-preset-env: "npm:7.8.0"
regenerator-runtime: "npm:0.13.9"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:6.6.7"
sass: "npm:1.54.4"
sass-loader: "npm:13.0.2"
semver: "npm:7.5.3"
source-map-loader: "npm:4.0.0"
source-map-support: "npm:0.5.21"
stylus: "npm:0.59.0"
stylus-loader: "npm:7.0.0"
terser: "npm:5.14.2"
text-table: "npm:0.2.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.4.0"
webpack: "npm:5.76.1"
webpack-dev-middleware: "npm:5.3.3"
webpack-dev-server: "npm:4.11.0"
webpack-merge: "npm:5.8.0"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^14.0.0
"@angular/localize": ^14.0.0
"@angular/service-worker": ^14.0.0
karma: ^6.3.0
ng-packagr: ^14.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=4.6.2 <4.9"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/service-worker":
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
checksum: f89692a3c1114ad892459c7585d099cfde40540149f9aa74d7f542a00f078a0e68773eee7122b5fbded96c95c340473818a93ab338c9ad6542e6375cc112f651
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1402.13":
version: 0.1402.13
resolution: "@angular-devkit/build-webpack@npm:0.1402.13"
dependencies:
"@angular-devkit/architect": "npm:0.1402.13"
rxjs: "npm:6.6.7"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
checksum: 9df0887e14f888d0a60c243eebb65a7bc1ee9b0b0856b9c0ffd3d53f77af6638e6a9d0b476cbb66b2d0c6f8d3bc7b2a3f0eac299d4e7defe50b5e657ec5ca46c
languageName: node
linkType: hard
"@angular-devkit/core@npm:14.2.13":
version: 14.2.13
resolution: "@angular-devkit/core@npm:14.2.13"
dependencies:
ajv: "npm:8.11.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.1.0"
rxjs: "npm:6.6.7"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 90bc3c041f041daf38d79eebd4e2313c4240a23d4819af1bb6786865c11f1ddcc5d83e705d705e75c3c19caaaf811fb44559fed4dc4c6c7ed7d2ce4e5b97e8f7
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:14.2.13":
version: 14.2.13
resolution: "@angular-devkit/schematics@npm:14.2.13"
dependencies:
"@angular-devkit/core": "npm:14.2.13"
jsonc-parser: "npm:3.1.0"
magic-string: "npm:0.26.2"
ora: "npm:5.4.1"
rxjs: "npm:6.6.7"
checksum: 852bf1ba50b4a787d33d108db16569153eb0b553e578441b1d1aa1c0ef4e2cf9b7e1e5e00be1cbe8fed43f0a1c7312efcc8d081a1c3b61d66e1da2e28735b04e
languageName: node
linkType: hard
"@angular-eslint/builder@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/builder@npm:14.4.0"
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: "*"
checksum: b187663ddc22fa158a6f1d095720ab8c3e8bdbda4fc422f241af20ae6dfc3f330b7ba4632c793f43fe640fb20abedc630d563aa2f831f73729c9e820e450c5fe
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/bundled-angular-compiler@npm:14.4.0"
checksum: b2a0cf2107575e378346df1cd860e9ae98df1e134febfeadbb92c08d2811068816fafea5e3f68857cde8c173bfed45773355c80522534474fa25d5d605adefc0
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/eslint-plugin-template@npm:14.4.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:14.4.0"
"@angular-eslint/utils": "npm:14.4.0"
"@typescript-eslint/type-utils": "npm:5.43.0"
"@typescript-eslint/utils": "npm:5.43.0"
aria-query: "npm:5.1.3"
axobject-query: "npm:3.1.1"
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: "*"
checksum: 418c1ead9fe6defaa269fddaed916d4d6ee2b6e9920bca9127dd1e551d0f3e1a378a7bf9dc646084ba755b051a6270664c67a99f20a166ae00c0ca1c2ec974d2
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/eslint-plugin@npm:14.4.0"
dependencies:
"@angular-eslint/utils": "npm:14.4.0"
"@typescript-eslint/utils": "npm:5.43.0"
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: "*"
checksum: ac00a1d70c12551583606c111aaa007324889cc20362ef3f54517dbd7a946ea6abbb61c5a33c75029edb60e3ecea78c850d3975a078db498c306629ef61ddc47
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/schematics@npm:14.4.0"
dependencies:
"@angular-eslint/eslint-plugin": "npm:14.4.0"
"@angular-eslint/eslint-plugin-template": "npm:14.4.0"
ignore: "npm:5.2.0"
strip-json-comments: "npm:3.1.1"
tmp: "npm:0.2.1"
peerDependencies:
"@angular/cli": ">= 14.0.0 < 15.0.0"
checksum: 16563b8c9fdf1f25454058be22e4451cc0c928ee50e701cad1c2ddba4fa0b2a549d01549637feb1d3cc7c0eb735491746106f9667b1a225c2f74857e303dca25
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/template-parser@npm:14.4.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:14.4.0"
eslint-scope: "npm:^7.0.0"
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: "*"
checksum: 7c219068cb8ef158171bf645662d1b75d8603297d1a055d25ee7391ea2e47fdcc292b551d8613a9aff6ed45657328653cb2c10271f5aa45208e28b1e8efc628c
languageName: node
linkType: hard
"@angular-eslint/utils@npm:14.4.0":
version: 14.4.0
resolution: "@angular-eslint/utils@npm:14.4.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:14.4.0"
"@typescript-eslint/utils": "npm:5.43.0"
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: "*"
checksum: 4580d7a9daf1a367668f8f35d2ef65df450d3cbbbaf495b885d1271847faa28dc5a2bad7cbb7f5bfc03a4929213286ed9234a18d0faa12f58cedccaaddfa4d23
languageName: node
linkType: hard
"@angular/cli@npm:~14.2.6":
version: 14.2.13
resolution: "@angular/cli@npm:14.2.13"
dependencies:
"@angular-devkit/architect": "npm:0.1402.13"
"@angular-devkit/core": "npm:14.2.13"
"@angular-devkit/schematics": "npm:14.2.13"
"@schematics/angular": "npm:14.2.13"
"@yarnpkg/lockfile": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
debug: "npm:4.3.4"
ini: "npm:3.0.0"
inquirer: "npm:8.2.4"
jsonc-parser: "npm:3.1.0"
npm-package-arg: "npm:9.1.0"
npm-pick-manifest: "npm:7.0.1"
open: "npm:8.4.0"
ora: "npm:5.4.1"
pacote: "npm:13.6.2"
resolve: "npm:1.22.1"
semver: "npm:7.5.3"
symbol-observable: "npm:4.0.0"
uuid: "npm:8.3.2"
yargs: "npm:17.5.1"
bin:
ng: bin/ng.js
checksum: a330b45d8919c175b294cb12a50cb23372651f10a6ebb9794c35e3a11380b6380d35f4ba356a1a23f53b63d43acd5f79a954d5b287a7cacb0201041441d010e7
languageName: node
linkType: hard
"@angular/common@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/common@npm:14.2.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 14.2.7
rxjs: ^6.5.3 || ^7.4.0
checksum: 3e36e4a8cddbee142dad08c70293019a3c4e4fb03d77e85a7dad3e50c4aa718c5b8d8a6c9365489e3bceeb55cd9496f40a3e0f700bbde834ef3c4e9b4afcbfcf
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/compiler-cli@npm:14.2.7"
dependencies:
"@babel/core": "npm:^7.17.2"
chokidar: "npm:^3.0.0"
convert-source-map: "npm:^1.5.1"
dependency-graph: "npm:^0.11.0"
magic-string: "npm:^0.26.0"
reflect-metadata: "npm:^0.1.2"
semver: "npm:^7.0.0"
sourcemap-codec: "npm:^1.4.8"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 14.2.7
typescript: ">=4.6.2 <4.9"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/main-ngcc.js
checksum: fecc10ea66706fe26a5793e5a4223080f6953b129e71a4c1b31f56f9a99f7875dbed00e4cbbcd3be04a83b02b0429bd8580931fc8c1a757ac09f044a46bfacf7
languageName: node
linkType: hard
"@angular/compiler@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/compiler@npm:14.2.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 14.2.7
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: a7fb3d6266ebe84f446878150668589bf541dc92f84fb5cccc60888b760bf76f318f12567521ef0716b0247a4b5c3a0e3f04bd7ba890676761167ad1dae783ae
languageName: node
linkType: hard
"@angular/core@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/core@npm:14.2.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.11.4
checksum: 0b1657d677b6da0565d29d3216653fd95405c7a1c669e7b23c5a4addec801d6d74794b6e600a60c5d2faccdfdf6a9086dcf58175b4657678ecdf5c69f85f4f67
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/platform-browser-dynamic@npm:14.2.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 14.2.7
"@angular/compiler": 14.2.7
"@angular/core": 14.2.7
"@angular/platform-browser": 14.2.7
checksum: 4393230c04c8cec0bff649de0f099e9f60d271a0e7dde0fb586e8b8b349fef6435acd7238a6f6dabf3563ead09fde3fbc9f6a44c3be998aedbded2a167d313d6
languageName: node
linkType: hard
"@angular/platform-browser@npm:^14.2.7":
version: 14.2.7
resolution: "@angular/platform-browser@npm:14.2.7"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 14.2.7
"@angular/common": 14.2.7
"@angular/core": 14.2.7
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: e539a4468c5d5fa62c0d4f33bf59c165fdf5f9e7d13fc2c0f1f63cc4c0219bc6be994cd7a2d5960263e53e7282118d819f1981838e2a11ec1e14b56b919369c9
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.18.6, @babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.17.7, @babel/compat-data@npm:^7.18.8, @babel/compat-data@npm:^7.19.3, @babel/compat-data@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/compat-data@npm:7.19.4"
checksum: f6c3cec531e9c8ab2b0a7db64775f6f00e88ce1f727114cffb900c989ed3bcc42edee86cbe9c1d9f42ca2dbc490bcec91840cbe258dc7e0db82a4ea396ca1779
languageName: node
linkType: hard
"@babel/core@npm:7.18.10":
version: 7.18.10
resolution: "@babel/core@npm:7.18.10"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.18.10"
"@babel/helper-compilation-targets": "npm:^7.18.9"
"@babel/helper-module-transforms": "npm:^7.18.9"
"@babel/helpers": "npm:^7.18.9"
"@babel/parser": "npm:^7.18.10"
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.18.10"
"@babel/types": "npm:^7.18.10"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 94f749fb8bb844f5c5324513cac23edf781e24c15645a513eb54afc0e2f71d8c15c02e61f216a79f0f997deafc062b7c54bf2ebf31a2f62d0dd12bcbbc15dc97
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3, @babel/core@npm:^7.17.2":
version: 7.19.6
resolution: "@babel/core@npm:7.19.6"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.19.6"
"@babel/helper-compilation-targets": "npm:^7.19.3"
"@babel/helper-module-transforms": "npm:^7.19.6"
"@babel/helpers": "npm:^7.19.4"
"@babel/parser": "npm:^7.19.6"
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.19.6"
"@babel/types": "npm:^7.19.4"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 58a095dac601444128ca17ffa08bd08cb3ea31305f49389ff882a2df450937f6929108810e94742306f5ccb13cd113244a9012a2f50bdbd7539873d6fd767521
languageName: node
linkType: hard
"@babel/generator@npm:7.18.12":
version: 7.18.12
resolution: "@babel/generator@npm:7.18.12"
dependencies:
"@babel/types": "npm:^7.18.10"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 0a81453f3d6f458b6eeac046cb47b897674ea12ac7c72068faed1762aedade2290fbd139fcb605c4ea8386014aa87a0c96e609d8c469b434ab5923189e075ad1
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.10, @babel/generator@npm:^7.19.6, @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/helper-annotate-as-pure@npm:7.18.6, @babel/helper-annotate-as-pure@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-annotate-as-pure@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: e413cd022e1e21232c1ce98f3e1198ec5f4774c7eceb81155a45f9cb6d8481f3983c52f83252309856668e728c751f0340d29854b604530a694899208df6bcc3
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.18.6":
version: 7.18.9
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.18.9"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.18.6"
"@babel/types": "npm:^7.18.9"
checksum: 8571b3cebdd3b80349aaa04e0c1595d8fc283aea7f3d7153dfba0d5fcb090e53f3fe98ca4c19ffa185e642a14ea2b97f11eccefc9be9185acca8916e68612c3f
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.17.7, @babel/helper-compilation-targets@npm:^7.18.9, @babel/helper-compilation-targets@npm:^7.19.0, @babel/helper-compilation-targets@npm:^7.19.3":
version: 7.19.3
resolution: "@babel/helper-compilation-targets@npm:7.19.3"
dependencies:
"@babel/compat-data": "npm:^7.19.3"
"@babel/helper-validator-option": "npm:^7.18.6"
browserslist: "npm:^4.21.3"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 05f5ea8c9310f6064d508e06c5523e3e7dee988056be7505fbdecdc9564027946d3163405b49c8f3dd27c819280c34fb99ab810e181de572c77e79c9ae303201
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6":
version: 7.19.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.19.0"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-function-name": "npm:^7.19.0"
"@babel/helper-member-expression-to-functions": "npm:^7.18.9"
"@babel/helper-optimise-call-expression": "npm:^7.18.6"
"@babel/helper-replace-supers": "npm:^7.18.9"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: f61b98942d40d904e697c14fb24f30975c639f7d40e011a80b22fb22f5e423abe857ad7bba56318592a268420426d82c94a9193e8f761a8cd0717080549ca7ac
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.19.0"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
regexpu-core: "npm:^5.1.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 30621e5bb6646cc68cd3504fe8e126fcc7efe0da8bafaf52f7ab3b347c6ad0d84dc2e16b1bef4b5c39f9ba44dfde2f64ad9d8f0942450ac46eb81abb1bda759a
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.3.2, @babel/helper-define-polyfill-provider@npm:^0.3.3":
version: 0.3.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.3"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.17.7"
"@babel/helper-plugin-utils": "npm:^7.16.7"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
semver: "npm:^6.1.2"
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: c3668f9ee2b76bfc08398756c504a8823e18bad05d0c2ee039b821c839e2b70f3b6ad8b7a3d3a6be434d981ed2af845a490aafecc50eaefb9b5099f2da156527
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9, @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-explode-assignable-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-explode-assignable-expression@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 6e2fc5841fd849c840634e55b3a3f373167179bddb3d1c5fa2d7f63c3959425b8f87cd5c5ce5dcbb96e877a5033687840431b84a8e922c323f8e6aac9645db0b
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.18.9, @babel/helper-function-name@npm:^7.19.0, @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.18.6, @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.18.9":
version: 7.18.9
resolution: "@babel/helper-member-expression-to-functions@npm:7.18.9"
dependencies:
"@babel/types": "npm:^7.18.9"
checksum: a657703ef57b8932bad7299d9e351afc05b2f80b8380fd12e019651343dfdf2eb3efdaf3758278e19da89b86638b9d0b8023f5b5bc7853e256fe7f6289c18236
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: a92e28fc4b5dbb0d0afd4a313efc0cf5b26ce1adc0c01fc22724c997789ac7d7f4f30bc9143d94a6ba8b0a035933cf63a727a365ce1c57dbca0935f48de96244
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.18.6, @babel/helper-module-transforms@npm:^7.18.9, @babel/helper-module-transforms@npm:^7.19.6":
version: 7.19.6
resolution: "@babel/helper-module-transforms@npm:7.19.6"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-module-imports": "npm:^7.18.6"
"@babel/helper-simple-access": "npm:^7.19.4"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/helper-validator-identifier": "npm:^7.19.1"
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.19.6"
"@babel/types": "npm:^7.19.4"
checksum: c6d5fd5cb299591b005144ee2e142d6bba06f8c2a87c9b19e2e9a5189f39a59e313266a6ca0213cdd185e4757c47accc2f3e346b5004da0a69da87e214bd7f09
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-optimise-call-expression@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: f1352ebc5d9abae6088e7d9b4b6b445c406ba552ef61e967ec77d005ff65752265b002b6faaf16cc293f9e37753760ef05c1f4b26cda1039256917022ba5669c
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.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.18.9, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.19.0
resolution: "@babel/helper-plugin-utils@npm:7.19.0"
checksum: 9ae9c09cf7e3b6023be2bb66f3ca3b5fa8c2b21b58bd09819d494fcd7ab2a1844056c8dfd609ffb474e3c857a1bc979fa7a60931b0c71d69a3e939ba724498ac
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.18.6, @babel/helper-remap-async-to-generator@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.18.9"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-wrap-function": "npm:^7.18.9"
"@babel/types": "npm:^7.18.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: e6b2a906bdb3ec40d9cee7b7f8d02a561334603a0c57406a37c77d301ca77412ff33f2cef9d89421d7c3b1359604d613c596621a2ff22129612213198c5d1527
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.18.6, @babel/helper-replace-supers@npm:^7.18.9":
version: 7.19.1
resolution: "@babel/helper-replace-supers@npm:7.19.1"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-member-expression-to-functions": "npm:^7.18.9"
"@babel/helper-optimise-call-expression": "npm:^7.18.6"
"@babel/traverse": "npm:^7.19.1"
"@babel/types": "npm:^7.19.0"
checksum: da9d02730a3760ab2edef7d94f45d7ef32087c594ac187d3d8c8ca02f7e78da6ffb9c4694d4dc7ac05954f8daec987f3792eae785a28d0930361696917473327
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helper-simple-access@npm:7.19.4"
dependencies:
"@babel/types": "npm:^7.19.4"
checksum: 23e36b7a5063200e8ec722746ac41baad70d4c192f3fff5a435e02f599cde5f2b20bb23ff15833fe8763ffebd7677be900f7f9286b848363a97adc9aab642016
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.18.9"
dependencies:
"@babel/types": "npm:^7.18.9"
checksum: 243996398085f93ccde0174beffae3fd1c0d2a762df61713b32f1bd01b16e6eaccb47f38437706b2239e2b26673412e500e380c4b1f2413f801df4c7a6805e78
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.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.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 6b0ff8af724377ec41e5587fffa7605198da74cb8e7d8d48a36826df0c0ba210eb9fedb3d9bef4d541156e0bd11040f021945a6cbb731ccec4aefb4affa17aa4
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.19.1, @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.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-option@npm:7.18.6"
checksum: 7a1452725b87e6b0d26e8a981ad1e19a24d3bb8b17fb25d1254d6d1f3f2f2efd675135417d44f704ea4dd88f854e7a0a31967322dcb3e06fa80fc4fec71853a5
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.18.9":
version: 7.19.0
resolution: "@babel/helper-wrap-function@npm:7.19.0"
dependencies:
"@babel/helper-function-name": "npm:^7.19.0"
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.19.0"
"@babel/types": "npm:^7.19.0"
checksum: ea08ce61cdce9e5de8c279e2a71700b1ba4c78713292ab775563d24bd3ec6891f97b1d37b7193264bd5deafe6237a0c721ef2cbbe103cda69d98a1748c752f2a
languageName: node
linkType: hard
"@babel/helpers@npm:^7.18.9, @babel/helpers@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helpers@npm:7.19.4"
dependencies:
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.19.4"
"@babel/types": "npm:^7.19.4"
checksum: e13cca08375f5fe816f01173f6cffc685c3b0605bf7fd94ac76495209f57d69e352fa93bf0ff87f63d705d53b5d5e75abd0b5c2e653776c744911140e5ae7c7e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.20
resolution: "@babel/highlight@npm:7.22.20"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: f3c3a193afad23434297d88e81d1d6c0c2cf02423de2139ada7ce0a7fc62d8559abf4cc996533c1a9beca7fc990010eb8d544097f75e818ac113bf39ed810aa2
languageName: node
linkType: hard
"@babel/parser@npm:^7.14.7, @babel/parser@npm:^7.18.10, @babel/parser@npm:^7.19.6, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/parser@npm:7.23.0"
bin:
parser: ./bin/babel-parser.js
checksum: ab4ea9360ed4ba3c728c5a9bf33035103ebde20a7e943c4ae1d42becb02a313d731d12a93c795c5a19777031e4022e64b92a52262eda902522a1a18649826283
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: be2cccfc101824428a860f8c71d2cd118a691a9ace5525197f3f0cba19a522006dc4f870405beece836452353076ac687aefda20d9d1491ea72ce51179057988
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.9"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.18.9"
"@babel/plugin-proposal-optional-chaining": "npm:^7.18.9"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 09258c9cf1d1303663d9152ca693bc4ff2ef2f9c6c71ce130b32b96c1a199a73da75e38a3b75ff156b9f070aaab2b816891570a8292ce40ff8edf33b567d631d
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:7.18.10":
version: 7.18.10
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.18.10"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-plugin-utils": "npm:^7.18.9"
"@babel/helper-remap-async-to-generator": "npm:^7.18.9"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3681e66e993cdc919cc6ed1890c970acce10eaff91d401a2f10cfc1cdc55ed0ef52aecfdf7c587dfc03bb90749efda539b2d62010e406206f82eae502cc56641
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.18.10":
version: 7.19.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.19.1"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-plugin-utils": "npm:^7.19.0"
"@babel/helper-remap-async-to-generator": "npm:^7.18.9"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e2b93724dedf2571957d3e46d0710553f2a01794f9abab1c2f896132a70a5d4a3aafd3687b4a848ccddcfa911d40f0b17e4a89351e5de50d31d0d88519da941c
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d5172ac6c9948cdfc387e94f3493ad86cb04035cf7433f86b5d358270b1b9752dc25e176db0c5d65892a246aca7bdb4636672e15626d7a7de4bc0bd0040168d9
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-static-block@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-class-static-block": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 129c6e53d20229a32924fc45fe72597f2c25131fa8c7da51a07d2c8971c7c815703e2a68a645da7872e17a90bb365e63fa813e47f51b62cb61f9e59fefdd71b6
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 99be9865edfd65a46afb97d877ea247a8e881b4d0246a1ea0adf6db04c92f4f0959bd2f6f706d73248a2a7167c34f2464c4863137ddb94deadc5c7cc8bfc3e72
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.9"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b90346bd3628ebd44138d0628a5aba1e6b11748893fb48e87008cac30f3bc7cd3161362e49433156737350318174164436357a66fbbfdbe952606b460bd8a0e4
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-json-strings@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-json-strings": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 83f2ce41262a538ee43450044b9b0de320002473e4849421a7318c0500f9b0385c03d228f1be777ad71fd358aef13392e3551f0be52b5c423b0c34f7c9e5a06d
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.9"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d7abdc1fa4c2aa1fec2cd7cd649adab313e7837043d9ca166e043d3e1b4ece3b4c2a59b0c1dca2ed5a774b16ab688a407f85ad1d8256af3b2cd040678fc0a4dd
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f6629158196ee9f16295d16db75825092ef543f8b98f4dfdd516e642a0430c7b1d69319ee676d35485d9b86a53ade6de0b883490d44de6d4336d38cdeccbe0bf
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a83a65c6ec0d2293d830e9db61406d246f22d8ea03583d68460cb1b6330c6699320acce1b45f66ba3c357830720e49267e3d99f95088be457c66e6450fbfe3fa
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.18.9":
version: 7.19.4
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.19.4"
dependencies:
"@babel/compat-data": "npm:^7.19.4"
"@babel/helper-compilation-targets": "npm:^7.19.3"
"@babel/helper-plugin-utils": "npm:^7.19.0"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
"@babel/plugin-transform-parameters": "npm:^7.18.8"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0c51c3ef25890ee69bec275db6d4a79b475b809dcb473cd64d5afed96f60be51d928a59356beb69e40b1328c34715e400b48322c6af823ba3792bbe52d7cc7d9
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ab20153d9e95e0b73004fdf86b6a2d219be2a0ace9ca76cd9eccddb680c913fec173bca54d761b1bc6044edde0a53811f3e515908c3b16d2d81cfec1e2e17391
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.9"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.18.9"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d28eadd292d615c8c97616b2ccef24ac0eb1fde7264dbd41a46df537b75f0038fd474e52409c5ee0e951e8d619020650c0e1cb47d2f856dae6f93bc1795f7611
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1c273d0ec3d49d0fe80bd754ec0191016e5b3ab4fb1e162ac0c014e9d3c1517a5d973afbf8b6dc9f9c98a8605c79e5f9e8b5ee158a4313fa68d1ff7b02084b6a
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.18.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 173496cb8b16879cf3dd09d91bd246c6db3dc2b4320950a5a4dc4d4395e7c9d7407e5e5313242bbafcb9466540ddcb36f7b07f279dd471c6585592a141ddae51
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.18.6, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.18.6
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c68feae57d9b1f4d98ecc2da63bda1993980deb509ccb08f6eace712ece8081032eb6532c304524b544c2dd577e2f9c2fe5c5bfd73d1955c946300def6fc7493
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-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"