forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 3
/
yarn.lock
17907 lines (16209 loc) · 679 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: 10
"$repo-utils@link:./scripts/repo-utils::locator=babel%40workspace%3A.":
version: 0.0.0-use.local
resolution: "$repo-utils@link:./scripts/repo-utils::locator=babel%40workspace%3A."
languageName: node
linkType: soft
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.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: 10/503a58d6e9d645a20debd34fa8df79fb435a79a34b1d487b9ff0be9f20712b1594ce21da16b63af7db8a6b34472212572e53a55613a5a6b3134b23fc74843d04
languageName: node
linkType: hard
"@babel-baseline/core@npm:@babel/[email protected], @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
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: 10/b69d7008695b2ac7a3a2db83c5c712fbb79f7031c4480f6351cde327930e38873003d1d021059b729a1d0cb48093f1d384c64269b78f6189f50051fe4f64dc2d
languageName: node
linkType: hard
"@babel-baseline/generator@npm:@babel/[email protected], @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.23.0, @babel/generator@npm:^7.7.2":
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: 10/bd1598bd356756065d90ce26968dd464ac2b915c67623f6f071fb487da5f9eb454031a380e20e7c9a7ce5c4a49d23be6cb9efde404952b0b3f3c0c3a9b73d68a
languageName: node
linkType: hard
"@babel-baseline/helper-compilation-targets@npm:@babel/[email protected], @babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6":
version: 7.22.15
resolution: "@babel/helper-compilation-targets@npm:7.22.15"
dependencies:
"@babel/compat-data": "npm:^7.22.9"
"@babel/helper-validator-option": "npm:^7.22.15"
browserslist: "npm:^4.21.9"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/9706decaa1591cf44511b6f3447eb9653b50ca3538215fe2e5387a8598c258c062f4622da5b95e61f0415706534deee619bbf53a2889f9bd967949b8f6024e0e
languageName: node
linkType: hard
"@babel-baseline/helper-validator-identifier@npm:@babel/[email protected], @babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel-baseline/parser@npm:@babel/[email protected], @babel/parser@npm:^7.0.0, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @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: 10/201641e068f8cca1ff12b141fcba32d7ccbabc586961bd1b85ae89d9695867f84d57fc2e1176dc4981fd28e5e97ca0e7c32cd688bd5eabb641a302abc0cb5040
languageName: node
linkType: hard
"@babel-baseline/traverse@npm:@babel/[email protected], @babel/traverse@npm:^7.0.0, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.23.2":
version: 7.23.2
resolution: "@babel/traverse@npm:7.23.2"
dependencies:
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.0"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-hoist-variables": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/parser": "npm:^7.23.0"
"@babel/types": "npm:^7.23.0"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 10/e4fcb8f8395804956df4ae1301230a14b6eb35b74a7058a0e0b40f6f4be7281e619e6dafe400e833d4512da5d61cf17ea177d04b00a8f7cf3d8d69aff83ca3d8
languageName: node
linkType: hard
"@babel-baseline/types@npm:@babel/[email protected], @babel/types@npm:^7.12.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
version: 7.23.0
resolution: "@babel/types@npm:7.23.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.22.5"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 10/ca5b896a26c91c5672254725c4c892a35567d2122afc47bd5331d1611a7f9230c19fc9ef591a5a6f80bf0d80737e104a9ac205c96447c74bee01d4319db58001
languageName: node
linkType: hard
"@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup"
dependencies:
"@babel/runtime": "workspace:^"
"@rollup/plugin-commonjs": "npm:^24.1.0"
"@rollup/plugin-node-resolve": "npm:^15.0.2"
rollup: "npm:^2.79.1"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src"
dependencies:
"@babel/runtime": "workspace:^"
"@babel/runtime-corejs3": "workspace:^"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3"
dependencies:
"@babel/runtime": "workspace:^"
webpack: "npm:^3.12.0"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4"
dependencies:
"@babel/runtime": "workspace:^"
webpack: "npm:^4.46.0"
webpack-cli: "npm:^4.5.0"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5"
dependencies:
"@babel/runtime": "workspace:^"
webpack: "npm:^5.88.2"
webpack-cli: "npm:^4.10.0"
languageName: unknown
linkType: soft
"@babel/benchmark@workspace:benchmark":
version: 0.0.0-use.local
resolution: "@babel/benchmark@workspace:benchmark"
dependencies:
"@babel-baseline/core": "npm:@babel/[email protected]"
"@babel-baseline/generator": "npm:@babel/[email protected]"
"@babel-baseline/helper-compilation-targets": "npm:@babel/[email protected]"
"@babel-baseline/helper-validator-identifier": "npm:@babel/[email protected]"
"@babel-baseline/parser": "npm:@babel/[email protected]"
"@babel-baseline/traverse": "npm:@babel/[email protected]"
"@babel-baseline/types": "npm:@babel/[email protected]"
"@babel/core": "workspace:^"
"@babel/generator": "workspace:^"
"@babel/helper-compilation-targets": "workspace:^"
"@babel/helper-validator-identifier": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/plugin-transform-modules-commonjs": "workspace:^"
"@babel/preset-env": "workspace:^"
"@babel/preset-flow": "workspace:^"
"@babel/preset-typescript": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
benchmark: "npm:^2.1.4"
languageName: unknown
linkType: soft
"@babel/cli@npm:8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/cli@npm:8.0.0-alpha.8"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.25"
chokidar: "npm:^3.4.0"
commander: "npm:^4.0.1"
convert-source-map: "npm:^2.0.0"
fs-readdir-recursive: "npm:^1.1.0"
glob: "npm:^7.2.0"
slash: "npm:^3.0.0"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.mjs
babel-external-helpers: ./bin/babel-external-helpers.mjs
checksum: 10/331bea57687227667754af1871447cf5a1b1689c7d323183804f76b3d38437d203971dd975f3cca3b271f5b90f75d3ebb354cb1f74fd1ba74c89a68c3f17f3d9
languageName: node
linkType: hard
"@babel/cli@workspace:packages/babel-cli":
version: 0.0.0-use.local
resolution: "@babel/cli@workspace:packages/babel-cli"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-transform-fixture-test-runner": "workspace:^"
"@jridgewell/trace-mapping": "npm:^0.3.25"
"@nicolo-ribaudo/chokidar-2": "condition:BABEL_8_BREAKING ? : 2.1.8-no-fsevents.3"
"@types/fs-readdir-recursive": "npm:^1.1.0"
"@types/glob": "npm:^7.2.0"
chokidar: "npm:^3.4.0"
commander: "condition:BABEL_8_BREAKING ? ^12.1.0 : ^6.2.0"
convert-source-map: "npm:^2.0.0"
fs-readdir-recursive: "npm:^1.1.0"
glob: "condition:BABEL_8_BREAKING ? ^10.3.12 : ^7.2.0 (esm:sync|default)"
make-dir: "condition:BABEL_8_BREAKING ? : ^2.1.0"
semver: "npm:^6.3.1"
slash: "condition:BABEL_8_BREAKING ? ^3.0.0 : ^2.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
languageName: unknown
linkType: soft
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10/d243f0b1e475f5953ae452f70c0b4bd47a106df59733631b9ae36fb9ad1ae068c3a11d936ed22117084ec7439e843a4b75700922b507aac723ad84a257ae94f9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.22.5":
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: 10/bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/code-frame@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/code-frame@npm:8.0.0-alpha.8"
dependencies:
"@babel/highlight": "npm:^8.0.0-alpha.8"
picocolors: "npm:^1.0.0"
checksum: 10/dc1deda576269958256383e69976aa0dd73508711623a02158fbe47c328c11c6995f1e5101935c6e8e56ed7def3fbfc58c28ee5de554e8508b7c8da7bd00140b
languageName: node
linkType: hard
"@babel/code-frame@workspace:^, @babel/code-frame@workspace:packages/babel-code-frame":
version: 0.0.0-use.local
resolution: "@babel/code-frame@workspace:packages/babel-code-frame"
dependencies:
"@babel/highlight": "workspace:^"
import-meta-resolve: "npm:^4.1.0"
picocolors: "npm:^1.0.0"
strip-ansi: "npm:^4.0.0"
languageName: unknown
linkType: soft
"@babel/compat-data@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/compat-data@npm:7.22.9"
checksum: 10/6797f59857917e57e1765811e4f48371f2bc6063274be012e380e83cbc1a4f7931d616c235df56404134aa4bb4775ee61f7b382688314e1b625a4d51caabd734
languageName: node
linkType: hard
"@babel/compat-data@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/compat-data@npm:8.0.0-alpha.8"
checksum: 10/477b8f807cdf00af27785807c8961866221fe6293517f7def6cd440a964e7a8443065e8da38e817b26ef7c4c2899f79195a507322c186df57e64f0dc4ccf2809
languageName: node
linkType: hard
"@babel/compat-data@workspace:*, @babel/compat-data@workspace:^, @babel/compat-data@workspace:packages/babel-compat-data":
version: 0.0.0-use.local
resolution: "@babel/compat-data@workspace:packages/babel-compat-data"
dependencies:
"@mdn/browser-compat-data": "npm:^5.3.0"
core-js-compat: "npm:^3.31.0"
electron-to-chromium: "npm:^1.4.441"
languageName: unknown
linkType: soft
"@babel/core-7.12@npm:@babel/[email protected], @babel/core@npm:@babel/[email protected]":
version: 7.12.9
resolution: "@babel/core@npm:7.12.9"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.12.5"
"@babel/helper-module-transforms": "npm:^7.12.1"
"@babel/helpers": "npm:^7.12.5"
"@babel/parser": "npm:^7.12.7"
"@babel/template": "npm:^7.12.7"
"@babel/traverse": "npm:^7.12.9"
"@babel/types": "npm:^7.12.7"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10/a2c79790c38b95de1f540d26d0434c7bf8ce64c02c407f65b6bc5d9a84ada0769d2660612c16627493024e897a9b56aa2534f7213329a3c19e5ed9d39c6a0c03
languageName: node
linkType: hard
"@babel/core@npm:8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/core@npm:8.0.0-alpha.8"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^8.0.0-alpha.8"
"@babel/generator": "npm:^8.0.0-alpha.8"
"@babel/helper-compilation-targets": "npm:^8.0.0-alpha.8"
"@babel/helper-module-transforms": "npm:^8.0.0-alpha.8"
"@babel/helpers": "npm:^8.0.0-alpha.8"
"@babel/parser": "npm:^8.0.0-alpha.8"
"@babel/template": "npm:^8.0.0-alpha.8"
"@babel/traverse": "npm:^8.0.0-alpha.8"
"@babel/types": "npm:^8.0.0-alpha.8"
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:^7.3.4"
peerDependencies:
"@babel/preset-typescript": ^7.21.4 || ^8.0.0-0
peerDependenciesMeta:
"@babel/preset-typescript":
optional: true
checksum: 10/ef2614bad7d478c42f26e74ab21a5fecf719a1c6ecfee832577d4e65670538d8389e56c1da5363df37178bf1b79fff36c4195c5cbc5c04fd8623d0a472b435b9
languageName: node
linkType: hard
"@babel/core@workspace:^, @babel/core@workspace:packages/babel-core":
version: 0.0.0-use.local
resolution: "@babel/core@workspace:packages/babel-core"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "workspace:^"
"@babel/generator": "workspace:^"
"@babel/helper-compilation-targets": "workspace:^"
"@babel/helper-module-transforms": "workspace:^"
"@babel/helper-transform-fixture-test-runner": "workspace:^"
"@babel/helpers": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/plugin-syntax-flow": "workspace:^"
"@babel/plugin-transform-flow-strip-types": "workspace:^"
"@babel/plugin-transform-modules-commonjs": "workspace:^"
"@babel/preset-env": "workspace:^"
"@babel/preset-typescript": "workspace:^"
"@babel/template": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
"@jridgewell/trace-mapping": "npm:^0.3.25"
"@types/convert-source-map": "npm:^2.0.0"
"@types/debug": "npm:^4.1.0"
"@types/gensync": "npm:^1.0.0"
"@types/resolve": "npm:^1.3.2"
"@types/semver": "npm:^5.4.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"
rimraf: "npm:^3.0.0"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
ts-node: "npm:^11.0.0-beta.1"
languageName: unknown
linkType: soft
"@babel/eslint-config-internal@workspace:^, @babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal"
dependencies:
"@eslint/js": "npm:^8.44.0"
globals: "npm:^13.20.0"
peerDependencies:
"@babel/eslint-parser": ^7.16.0
languageName: unknown
linkType: soft
"@babel/eslint-parser@workspace:^, @babel/eslint-parser@workspace:eslint/babel-eslint-parser":
version: 0.0.0-use.local
resolution: "@babel/eslint-parser@workspace:eslint/babel-eslint-parser"
dependencies:
"@babel/core": "workspace:^"
"@nicolo-ribaudo/eslint-scope-5-internals": "condition:BABEL_8_BREAKING ? : 5.1.1-v1"
"@types/eslint": "npm:^8.56.2"
"@types/estree": "npm:^1.0.5"
"@typescript-eslint/scope-manager": "npm:^6.19.0"
dedent: "npm:^0.7.0"
eslint: "npm:^9.0.0"
eslint-scope: "condition:BABEL_8_BREAKING ? ^7.1.1 : "
eslint-visitor-keys: "condition:BABEL_8_BREAKING ? ^3.3.0 : ^2.1.0"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development-internal@workspace:^, @babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal"
dependencies:
eslint: "npm:^8.22.0"
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development@workspace:^, @babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development"
dependencies:
eslint: "npm:^8.22.0"
languageName: unknown
linkType: soft
"@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin"
dependencies:
clone-deep: "npm:^4.0.1"
eslint: "npm:^9.0.0"
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
languageName: unknown
linkType: soft
"@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures":
version: 0.0.0-use.local
resolution: "@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures"
dependencies:
"@babel/core": "workspace:^"
"@babel/eslint-parser": "workspace:^"
"@babel/plugin-proposal-decorators": "workspace:^"
"@babel/plugin-proposal-do-expressions": "workspace:^"
"@babel/plugin-proposal-explicit-resource-management": "workspace:^"
"@babel/plugin-proposal-pipeline-operator": "workspace:^"
"@babel/plugin-syntax-export-default-from": "workspace:^"
"@babel/plugin-transform-class-properties": "workspace:^"
"@babel/plugin-transform-private-methods": "workspace:^"
"@babel/preset-env": "workspace:^"
"@babel/preset-flow": "workspace:^"
"@babel/preset-react": "workspace:^"
eslint: "npm:^8.22.0"
languageName: unknown
linkType: soft
"@babel/eslint-tests@workspace:eslint/babel-eslint-tests":
version: 0.0.0-use.local
resolution: "@babel/eslint-tests@workspace:eslint/babel-eslint-tests"
dependencies:
"@babel/core": "workspace:^"
"@babel/eslint-parser": "workspace:^"
"@babel/preset-react": "workspace:^"
dedent: "npm:^0.7.0"
eslint: "npm:^8.22.0"
eslint-plugin-import: "npm:^2.25.4"
npm-babel-parser: "npm:@babel/parser@^7.14.0"
languageName: unknown
linkType: soft
"@babel/generator@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/generator@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/d81be017c0ff3db8ba08153465f731f3c8388012253fba133399e6b063e09c262f21297acf34bcb585ae2f8a5b0ef3924aecf84e05ee8b496e3b3b4b0e064641
languageName: node
linkType: hard
"@babel/generator@workspace:^, @babel/generator@workspace:packages/babel-generator":
version: 0.0.0-use.local
resolution: "@babel/generator@workspace:packages/babel-generator"
dependencies:
"@babel/helper-fixtures": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/types": "workspace:^"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/sourcemap-codec": "npm:^1.4.15"
"@jridgewell/trace-mapping": "npm:^0.3.25"
"@types/jsesc": "npm:^2.5.0"
charcodes: "npm:^0.2.0"
jsesc: "condition: BABEL_8_BREAKING ? ^3.0.2 : ^2.5.1"
languageName: unknown
linkType: soft
"@babel/helper-annotate-as-pure@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-annotate-as-pure@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/8ddfe32fa7c9301bfdd220bc8a8d342aca75b3e77a18e4786e899e676beb1e368656c82ea80215ffb8e8dc1bc701baecc6a3ff2d61a32f957a307848caf5c711
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@workspace:^, @babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure":
version: 0.0.0-use.local
resolution: "@babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/0ca3ca489ee4d842e13c46ed45a56d2a5f45deef12ff5a5aa72a22d791739ac8330743fbf9036653845a4e32ef43097aeff2964f04503b66fa7c99e7bf09b087
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@workspace:^, @babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-builder-react-jsx@workspace:^, @babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-check-duplicate-nodes@workspace:^, @babel/helper-check-duplicate-nodes@workspace:packages/babel-helper-check-duplicate-nodes":
version: 0.0.0-use.local
resolution: "@babel/helper-check-duplicate-nodes@workspace:packages/babel-helper-check-duplicate-nodes"
dependencies:
"@babel/core": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-compilation-targets@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-compilation-targets@npm:8.0.0-alpha.8"
dependencies:
"@babel/compat-data": "npm:^8.0.0-alpha.8"
"@babel/helper-validator-option": "npm:^8.0.0-alpha.8"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^7.14.1"
semver: "npm:^7.3.4"
checksum: 10/0b1a10686b65b268eb9494672645ef43c46287f60afe077b70071b7019604a6ad25dba2e4fe6614d72f822e124f798d8a51512312112aa3745af547eca1368c8
languageName: node
linkType: hard
"@babel/helper-compilation-targets@workspace:^, @babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets":
version: 0.0.0-use.local
resolution: "@babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets"
dependencies:
"@babel/compat-data": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
"@babel/helper-validator-option": "workspace:^"
"@types/lru-cache": "npm:^5.1.1"
"@types/semver": "npm:^5.5.0"
browserslist: "npm:^4.22.2"
lru-cache: "condition:BABEL_8_BREAKING ? ^7.14.1 : ^5.1.1"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
languageName: unknown
linkType: soft
"@babel/helper-create-class-features-plugin@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-create-class-features-plugin@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.8"
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.8"
"@babel/helper-function-name": "npm:^8.0.0-alpha.8"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.8"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.8"
"@babel/helper-replace-supers": "npm:^8.0.0-alpha.8"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0-alpha.8"
"@babel/helper-split-export-declaration": "npm:^8.0.0-alpha.8"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/5fb26200b5399ca94e3d3155f1a99e98ac18983a6293f28457e0a7cfa3048894895a81ddc8c3205eddf1523690c539f69188a0f7cca96aa3a9eaa468847634bc
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@workspace:^, @babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-function-name": "workspace:^"
"@babel/helper-member-expression-to-functions": "workspace:^"
"@babel/helper-optimise-call-expression": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
"@babel/helper-replace-supers": "workspace:^"
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^"
"@babel/helper-split-export-declaration": "workspace:^"
"@babel/preset-env": "workspace:^"
"@types/charcodes": "npm:^0.2.0"
charcodes: "npm:^0.2.0"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-create-regexp-features-plugin@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-create-regexp-features-plugin@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.8"
regexpu-core: "npm:^5.3.1"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/62b5b78b1cd39e284a30cb184c67d3858968c68784fa48647aaeffc00e74330b3ba0bdf8f6b8fd1ae4d1b23af6445816e9c5d8313a91f4db7b401f781b69a508
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@workspace:*, @babel/helper-create-regexp-features-plugin@workspace:^, @babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
regexpu-core: "npm:^5.3.1"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-define-polyfill-provider@npm:^0.6.1":
version: 0.6.1
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.1"
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: 10/316e7c0f05d2ae233d5fbb622c6339436da8d2b2047be866b64a16e6996c078a23b4adfebbdb33bc6a9882326a6cc20b95daa79a5e0edc92e9730e36d45fa523
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: 10/d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-environment-visitor@npm:8.0.0-alpha.8"
checksum: 10/6db21300f69cdd02da5eb51a0be8f95349f3526caaca49c8cc54eb09b97330a16ff788d27c3c9651202ec1e4b309252402b54c6306e8e4a364c8dc08cbbc4e11
languageName: node
linkType: hard
"@babel/helper-environment-visitor@workspace:^, @babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor":
version: 0.0.0-use.local
resolution: "@babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-fixtures@workspace:^, @babel/helper-fixtures@workspace:packages/babel-helper-fixtures":
version: 0.0.0-use.local
resolution: "@babel/helper-fixtures@workspace:packages/babel-helper-fixtures"
dependencies:
"@babel/core": "workspace:^"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@types/semver": "npm:^7.3.4"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@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: 10/7b2ae024cd7a09f19817daf99e0153b3bf2bc4ab344e197e8d13623d5e36117ed0b110914bc248faa64e8ccd3e97971ec7b41cc6fd6163a2b980220c58dcdf6d
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-function-name@npm:8.0.0-alpha.8"
dependencies:
"@babel/template": "npm:^8.0.0-alpha.8"
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/1bf52f23d8b1bdc3900c51834d013fb135e5b7580e83417b956ddc7f80db6b2ea4743c192467d22e904d6dbf899cbd932fed3ff8f1b1be6b93828763a87917ac
languageName: node
linkType: hard
"@babel/helper-function-name@workspace:^, @babel/helper-function-name@workspace:packages/babel-helper-function-name":
version: 0.0.0-use.local
resolution: "@babel/helper-function-name@workspace:packages/babel-helper-function-name"
dependencies:
"@babel/template": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@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: 10/394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-hoist-variables@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/e4d7c7a397b44e32c566627d34be964407bdf18e80a4ebf19a8912f8da4f6f559d66a444eee210b042a86fb468f412d704573730a224a8602595d8209bb6e94c
languageName: node
linkType: hard
"@babel/helper-hoist-variables@workspace:^, @babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables":
version: 0.0.0-use.local
resolution: "@babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-import-to-platform-api@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-import-to-platform-api@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-compilation-targets": "npm:^8.0.0-alpha.8"
"@babel/helper-module-imports": "npm:^8.0.0-alpha.8"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/a07a6b7c952345f4a9e9dbf03b4fd627737ed522bb05a4737b6f4547bbcdb2a1e31ed5ccfa691a4440baabce3bdaa3579becac46d391f9143dbf7cb59f28459b
languageName: node
linkType: hard
"@babel/helper-import-to-platform-api@workspace:^, @babel/helper-import-to-platform-api@workspace:packages/babel-helper-import-to-platform-api":
version: 0.0.0-use.local
resolution: "@babel/helper-import-to-platform-api@workspace:packages/babel-helper-import-to-platform-api"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-compilation-targets": "workspace:^"
"@babel/helper-module-imports": "workspace:^"
"@babel/traverse": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0-0
languageName: unknown
linkType: soft
"@babel/helper-member-expression-to-functions@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-member-expression-to-functions@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/ca83f1183261baf44c43b28175a3e9ba692732311ec06767cd2776f5a62bc1b6ac9ac2141cd6af20931e232e72edc9dbdfa1ae2c66d490034f460e47c50dede0
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@workspace:^, @babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions":
version: 0.0.0-use.local
resolution: "@babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-module-imports@npm:^7.18.6, @babel/helper-module-imports@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 10/5ecf9345a73b80c28677cfbe674b9f567bb0d079e37dcba9055e36cb337db24ae71992a58e1affa9d14a60d3c69907d30fe1f80aea105184501750a58d15c81c
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-module-imports@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/15af2284b14b7eff21eb5d3478ccad13498955eb7d11c3f94fff600178cdba563eedb6aea8f3a10f73a5e2464a5ad27df81a00c7a21fec114bb057a129df4c1c
languageName: node
linkType: hard
"@babel/helper-module-imports@workspace:^, @babel/helper-module-imports@workspace:packages/babel-helper-module-imports":
version: 0.0.0-use.local
resolution: "@babel/helper-module-imports@workspace:packages/babel-helper-module-imports"
dependencies:
"@babel/core": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-module-transforms@npm:7.23.0"
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: 10/d72fe444f7b6c5aadaac8f393298d603eedd48e5dead67273a48e5c83a677cbccbd8a12a06c5bf5d97924666083279158a4bd0e799d28b86cbbfacba9e41f598
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-module-transforms@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.8"
"@babel/helper-module-imports": "npm:^8.0.0-alpha.8"
"@babel/helper-simple-access": "npm:^8.0.0-alpha.8"
"@babel/helper-split-export-declaration": "npm:^8.0.0-alpha.8"
"@babel/helper-validator-identifier": "npm:^8.0.0-alpha.8"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/429d227247b66a9213900d1d62b0f3a0157475c14a26a32f06e40df8fdaf362cba936d38425efe68b258a6a7481834c2501e8be62789a4f29f60cfc3bb8ed4a5
languageName: node
linkType: hard
"@babel/helper-module-transforms@workspace:^, @babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms":
version: 0.0.0-use.local
resolution: "@babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-module-imports": "workspace:^"
"@babel/helper-simple-access": "workspace:^"
"@babel/helper-split-export-declaration": "workspace:^"
"@babel/helper-validator-identifier": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-optimise-call-expression@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-optimise-call-expression@npm:8.0.0-alpha.8"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.8"
checksum: 10/4200d82517de3f12a7f783a84e7ca7a6a8815d32148e02d80f29f47186ce3d92e5377f9d44d0d5ca0e42612415a25fd752c39a76c67bea59de90f7afea95c40f
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@workspace:^, @babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression":
version: 0.0.0-use.local
resolution: "@babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression"
dependencies:
"@babel/generator": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-plugin-test-runner@workspace:^, @babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner"
dependencies:
"@babel/helper-transform-fixture-test-runner": "workspace:^"
languageName: unknown
linkType: soft
"@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: 10/ab220db218089a2aadd0582f5833fd17fa300245999f5f8784b10f5a75267c4e808592284a29438a0da365e702f05acb369f99e1c915c02f9f9210ec60eab8ea
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-plugin-utils@npm:8.0.0-alpha.8"
checksum: 10/df6591cbee114835f95fa3823a87610037b1ea557b6455dc5598d1e5e8ca57697a39e1f4c5e729419e791531f5bc4075815e2916f68fab7c3d32057c275e7f11
languageName: node
linkType: hard
"@babel/helper-plugin-utils@workspace:^, @babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils"
dependencies:
"@babel/core": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-remap-async-to-generator@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-remap-async-to-generator@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.8"
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.8"
"@babel/helper-wrap-function": "npm:^8.0.0-alpha.8"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/7828bf0380ca1a9d7cf6e1a2fdacf9dcfdac17c912ed36fa86eb643ed215c11da93547d7f71029bfd7e9ea8c074c8d6807f68d4418298371f34aac05a11340df
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@workspace:^, @babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator":
version: 0.0.0-use.local
resolution: "@babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-wrap-function": "workspace:^"
"@babel/traverse": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-replace-supers@npm:^8.0.0-alpha.8":
version: 8.0.0-alpha.8
resolution: "@babel/helper-replace-supers@npm:8.0.0-alpha.8"
dependencies:
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.8"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.8"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.8"
peerDependencies:
"@babel/core": ^8.0.0-alpha.8
checksum: 10/8ed9427cbef0a76f476cd446fba0ed15fe26f3c15fb83c4fff95de1bb3982d35f734c32b110f797fa662a1bf76924534e6d796d1cfcf35a66bde284b20473489
languageName: node
linkType: hard
"@babel/helper-replace-supers@workspace:^, @babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers":