forked from babel/babel
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
yarn.lock
17620 lines (15940 loc) · 664 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/core@7.24.4, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
version: 7.24.4
resolution: "@babel/core@npm:7.24.4"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.2"
"@babel/generator": "npm:^7.24.4"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.24.4"
"@babel/parser": "npm:^7.24.4"
"@babel/template": "npm:^7.24.0"
"@babel/traverse": "npm:^7.24.1"
"@babel/types": "npm:^7.24.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/1e049f8df26be0fe5be36173fd7c33dfb004eeeec28152fea83c90e71784f9a6f2237296f43a2ee7d9041e2a33a05f43da48ce2d4e0cd473a682328ca07ce7e0
languageName: node
linkType: hard
"@babel-baseline/generator@npm:@babel/generator@7.24.4":
version: 7.24.4
resolution: "@babel/generator@npm:7.24.4"
dependencies:
"@babel/types": "npm:^7.24.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10/69e1772dcf8f95baec951f422cca091d59a3f29b5eedc989ad87f7262289b94625983f6fe654302ca17aae0a32f9232332b83fcc85533311d6267b09c58b1061
languageName: node
linkType: hard
"@babel-baseline/helper-compilation-targets@npm:@babel/helper-compilation-targets@7.23.6, @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: 10/05595cd73087ddcd81b82d2f3297aac0c0422858dfdded43d304786cf680ec33e846e2317e6992d2c964ee61d93945cbf1fa8ec80b55aee5bfb159227fb02cb9
languageName: node
linkType: hard
"@babel-baseline/helper-validator-identifier@npm:@babel/helper-validator-identifier@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/parser@7.24.4":
version: 7.24.4
resolution: "@babel/parser@npm:7.24.4"
bin:
parser: ./bin/babel-parser.js
checksum: 10/3742cc5068036287e6395269dce5a2735e6349cdc8d4b53297c75f98c580d7e1c8cb43235623999d151f2ef975d677dbc2c2357573a1855caa71c271bf3046c9
languageName: node
linkType: hard
"@babel-baseline/traverse@npm:@babel/traverse@7.24.1":
version: 7.24.1
resolution: "@babel/traverse@npm:7.24.1"
dependencies:
"@babel/code-frame": "npm:^7.24.1"
"@babel/generator": "npm:^7.24.1"
"@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.24.1"
"@babel/types": "npm:^7.24.0"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10/b9b0173c286ef549e179f3725df3c4958069ad79fe5b9840adeb99692eb4a5a08db4e735c0f086aab52e7e08ec711cee9e7c06cb908d8035641d1382172308d3
languageName: node
linkType: hard
"@babel-baseline/types@npm:@babel/types@7.24.0":
version: 7.24.0
resolution: "@babel/types@npm:7.24.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 10/a0b4875ce2e132f9daff0d5b27c7f4c4fcc97f2b084bdc5834e92c9d32592778489029e65d99d00c406da612d87b72d7a236c0afccaa1435c028d0c94c9b6da4
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/core@7.24.4"
"@babel-baseline/generator": "npm:@babel/generator@7.24.4"
"@babel-baseline/helper-compilation-targets": "npm:@babel/helper-compilation-targets@7.23.6"
"@babel-baseline/helper-validator-identifier": "npm:@babel/helper-validator-identifier@7.22.20"
"@babel-baseline/parser": "npm:@babel/parser@7.24.4"
"@babel-baseline/traverse": "npm:@babel/traverse@7.24.1"
"@babel-baseline/types": "npm:@babel/types@7.24.0"
"@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.12":
version: 8.0.0-alpha.12
resolution: "@babel/cli@npm:8.0.0-alpha.12"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.25"
chokidar: "npm:^3.4.0"
commander: "npm:^12.1.0"
convert-source-map: "npm:^2.0.0"
fs-readdir-recursive: "npm:^1.1.0"
glob: "npm:^10.3.12"
slash: "npm:^3.0.0"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.mjs
babel-external-helpers: ./bin/babel-external-helpers.mjs
checksum: 10/fa63635b9ee3b4eb20a75bb489a5ff6f1ccfe27683f7e01179d940893ca9bc95c8bad43f8db797b91d73d7bdcd18e17bd903ddda06eeb9bbc8a16eb4e3614359
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.6.0"
commander: "condition:BABEL_8_BREAKING ? ^12.1.0 : ^6.2.0 (esm:program|default)"
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, @babel/code-frame@npm:^7.24.1, @babel/code-frame@npm:^7.24.2, @babel/code-frame@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10/4812e94885ba7e3213d49583a155fdffb05292330f0a9b2c41b49288da70cf3c746a3fda0bf1074041a6d741c33f8d7be24be5e96f41ef77395eeddc5c9ff624
languageName: node
linkType: hard
"@babel/code-frame@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/code-frame@npm:8.0.0-alpha.12"
dependencies:
"@babel/highlight": "npm:^8.0.0-alpha.12"
picocolors: "npm:^1.0.0"
checksum: 10/0debfc63fde2b8ae820cb694679508325159e96c99b5b79d96b8fba13937d6c77214eb4bd6c7ead7b0d6671bae9ac223d8deb816fd53614d7c24af82720796f7
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.23.5":
version: 7.24.4
resolution: "@babel/compat-data@npm:7.24.4"
checksum: 10/e51faec0ac8259f03cc5029d2b4a944b4fee44cb5188c11530769d5beb81f384d031dba951febc3e33dbb48ceb8045b1184f5c1ac4c5f86ab1f5e951e9aaf7af
languageName: node
linkType: hard
"@babel/compat-data@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/compat-data@npm:8.0.0-alpha.12"
checksum: 10/96f5bfd4bf8dddbf94b5f27304c0b9455161fb15371626e4e3de6dab664025df755843a3a0b65a38ffbb61c92a1595ce9e9d16f71d6ae7436eaea1a64bea3320
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.5.36"
core-js-compat: "npm:^3.37.1"
electron-to-chromium: "npm:^1.4.816"
languageName: unknown
linkType: soft
"@babel/core-7.12@npm:@babel/core@7.12.9, @babel/core@npm:@babel/core@7.12.9":
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/core@npm:8.0.0-alpha.12"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^8.0.0-alpha.12"
"@babel/generator": "npm:^8.0.0-alpha.12"
"@babel/helper-compilation-targets": "npm:^8.0.0-alpha.12"
"@babel/helpers": "npm:^8.0.0-alpha.12"
"@babel/parser": "npm:^8.0.0-alpha.12"
"@babel/template": "npm:^8.0.0-alpha.12"
"@babel/traverse": "npm:^8.0.0-alpha.12"
"@babel/types": "npm:^8.0.0-alpha.12"
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/83f495df151abc0d77352b71b8176b266d7cf46ae316f3ac36af9878bf3e17a869b0e4ae5a775dc3624046ef1f24b6653bceb2640f4aa465463404a695e9a266
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": "condition:BABEL_8_BREAKING ? : 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-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:^1.5.3"
eslint: "npm:^9.7.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:^9.7.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:^9.7.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.7.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:^9.7.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:^"
"@eslint/compat": "npm:^1.1.1"
dedent: "npm:^1.5.3"
eslint: "npm:^9.7.0"
eslint-plugin-import: "npm:^2.25.4"
globals: "npm:^15.9.0"
npm-babel-parser: "npm:@babel/parser@^7.14.0"
languageName: unknown
linkType: soft
"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.24.1, @babel/generator@npm:^7.24.4, @babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2":
version: 7.24.7
resolution: "@babel/generator@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10/c71d24a4b41b19c10d2f2eb819f27d4cf94220e2322f7c8fed8bfbbb115b2bebbdd6dc1f27dac78a175e90604def58d763af87e0fa81ce4ab1582858162cf768
languageName: node
linkType: hard
"@babel/generator@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/generator@npm:8.0.0-alpha.12"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.12"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/066a4203bd04980e8693fb0b7c94a5d5a57133d5254da4b5700d02ae70a55ee591cd29e7afdfebbc7efda11efe0c4ece169237bc9f89322dc1e88e74e2ed09bc
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: "npm:^3.0.2"
languageName: unknown
linkType: soft
"@babel/helper-annotate-as-pure@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-annotate-as-pure@npm:8.0.0-alpha.12"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/8f7e3345a543f46156afeacc05f3338806e4c982c1fbc463b509802aa070ee8f1412faba99195f3ba8d75373df81ba831dd148389e10df8baca10e5c9f7f260d
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:8.0.0-alpha.12"
dependencies:
"@babel/traverse": "npm:^8.0.0-alpha.12"
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/235e80499f782c449c5f0fe0c8e8dee4ad9dafaa7aa22899aa8a732ea882ccb3e2a70d0d841f9ccd1e3e852e431bc2996e99ee3750453c6a75a61707e641f994
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-compilation-targets@npm:8.0.0-alpha.12"
dependencies:
"@babel/compat-data": "npm:^8.0.0-alpha.12"
"@babel/helper-validator-option": "npm:^8.0.0-alpha.12"
browserslist: "npm:^4.23.1"
lru-cache: "npm:^7.14.1"
semver: "npm:^7.3.4"
checksum: 10/3e710f5a2b7ea3b7e66ba0a9140229f3344bf7c5f336267b0ebc263b7995b530244170e0733a4dd17c82f2a26a0070950553d0a6bf5391f99f392ec76e6c9be6
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.24.0"
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-create-class-features-plugin@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.12"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.12"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.12"
"@babel/helper-replace-supers": "npm:^8.0.0-alpha.12"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0-alpha.12"
"@babel/traverse": "npm:^8.0.0-alpha.12"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/eb1ac747d1629b851f39e2985dfa6e009d3a56ceb4021d528be1269deac12abcbec24823a96f0ee4d628db1c47771d0bd1d6ae9ac7b47d235dde348857c0f235
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-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/preset-env": "workspace:^"
"@babel/traverse": "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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-create-regexp-features-plugin@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.12"
regexpu-core: "npm:^5.3.1"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/3ec16c21a37d38e036326e6804986626020325d7390d8af085924e3df9a1e6756e884481884671d3e758c5212bbef2187df39ce14b78cf2b052c116c79507e78
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:^6.1.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, @babel/helper-define-polyfill-provider@npm:^0.6.2":
version: 0.6.2
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2"
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/bb32ec12024d3f16e70641bc125d2534a97edbfdabbc9f69001ec9c4ce46f877c7a224c566aa6c8c510c3b0def2e43dc4433bf6a40896ba5ce0cef4ea5ccbcff
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-environment-visitor@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10/079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6
languageName: node
linkType: hard
"@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, @babel/helper-function-name@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-function-name@npm:7.24.7"
dependencies:
"@babel/template": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/2ceb3d9b2b35a0fc4100fc06ed7be3bc38f03ff0bf128ff0edbc0cc7dd842967b1496fc70b5c616c747d7711c2b87e7d025c8888f48740631d6148a9d3614f85
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5, @babel/helper-hoist-variables@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-hoist-variables@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10/6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d
languageName: node
linkType: hard
"@babel/helper-import-to-platform-api@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-import-to-platform-api@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-compilation-targets": "npm:^8.0.0-alpha.12"
"@babel/helper-module-imports": "npm:^8.0.0-alpha.12"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/5d393b4560122dd51d81d50297105ac6cf8b63ac495895fcede03121646c90ef4e03a42fef6774a98ea1cc5a4079c0c0d9373ab5cde57d5629b6d5235bdcf9b6
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-member-expression-to-functions@npm:8.0.0-alpha.12"
dependencies:
"@babel/traverse": "npm:^8.0.0-alpha.12"
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/5e2d9240c0f73c93644a97065df18dcad96865a514c41ab7b39bb0bad2143f59b11689cb1f0ca24264cbd86086950ecdf7cd485e6817dbe9f37694d067ae8028
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.24.7":
version: 7.24.7
resolution: "@babel/helper-module-imports@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/df8bfb2bb18413aa151ecd63b7d5deb0eec102f924f9de6bc08022ced7ed8ca7fed914562d2f6fa5b59b74a5d6e255dc35612b2bc3b8abf361e13f61b3704770
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-module-imports@npm:8.0.0-alpha.12"
dependencies:
"@babel/traverse": "npm:^8.0.0-alpha.12"
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/79d8f07e708515066b03b154ec110ea80fa6b8701c7f2f3ed3da754818e89bf962ded9e6bc0b96436e36b7b8d7f34e6ae426b0edf64c6dce8526c43ea130259e
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-BABEL_8_BREAKING-false@npm:@babel/helper-module-transforms@workspace:^, @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-module-imports": "workspace:^"
"@babel/helper-simple-access": "workspace:^"
"@babel/helper-validator-identifier": "workspace:^"
"@babel/traverse": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-module-transforms@condition:BABEL_8_BREAKING ? : workspace:^":
version: 0.0.0-condition-4045c9
resolution: "@babel/helper-module-transforms@condition:BABEL_8_BREAKING?:workspace:^#4045c9"
dependencies:
"@babel/helper-module-transforms-BABEL_8_BREAKING-false": "npm:@babel/helper-module-transforms@workspace:^"
checksum: 10/ec948efd3766f791dcbce3236fc95be8e1824c39960c0360d5f87bce845e698887f2a31aa4408f1201d68ad49e2b241c6d618d245a0bcbdc55a85fc330a1ba15
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.23.3":
version: 7.24.7
resolution: "@babel/helper-module-transforms@npm:7.24.7"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.24.7"
"@babel/helper-module-imports": "npm:^7.24.7"
"@babel/helper-simple-access": "npm:^7.24.7"
"@babel/helper-split-export-declaration": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/4f2b232bf6d1be8d3a72b084a2a7ac1b0b93ea85717411a11ae1fb6375d4392019e781d8cc155789e649a2caa7eec378dd1404210603d6d4230f042c5feacffb
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-module-transforms@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-module-imports": "npm:^8.0.0-alpha.12"
"@babel/helper-simple-access": "npm:^8.0.0-alpha.12"
"@babel/helper-validator-identifier": "npm:^8.0.0-alpha.12"
"@babel/traverse": "npm:^8.0.0-alpha.12"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/cade3f41c588c2d964e951ecc128464dda3a2bfaf0cd2abc1e54316771e290fbb23641a44c92054c59e38528092a1e5b7797190db347b172cf1cbe816f17fdec
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-optimise-call-expression@npm:8.0.0-alpha.12"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/089b82531946fec94d3f7f16a3df07b5b2157f26b392103817117b685379d4e8bf779d14ff51e5fe79634f1afe46e2f70a786e1bc4b42c2efef307b546576734
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.24.7, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.24.8
resolution: "@babel/helper-plugin-utils@npm:7.24.8"
checksum: 10/adbc9fc1142800a35a5eb0793296924ee8057fe35c61657774208670468a9fbfbb216f2d0bc46c680c5fefa785e5ff917cc1674b10bd75cdf9a6aa3444780630
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-plugin-utils@npm:8.0.0-alpha.12"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/1b41ede2703a35a708fa38fbfa847f08d4f2fd31a0dca271acbcb6f8ecdd44458974ebacbf98081d7a6ae811b6e0506a44d8ba7c96c3951605d3efb0e5c515b7
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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-remap-async-to-generator@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.12"
"@babel/helper-wrap-function": "npm:^8.0.0-alpha.12"
"@babel/traverse": "npm:^8.0.0-alpha.12"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/2d0f33976ee5d5ff824eaa0d9866dfe9793b62995d45fa748b8baf83917c33d2e84f9f4c9a15ad69a0424b7429e1cb9cd6e082b647470cf540cfa3a6bb8a3d25
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-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.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-replace-supers@npm:8.0.0-alpha.12"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.12"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.12"
"@babel/traverse": "npm:^8.0.0-alpha.12"
peerDependencies:
"@babel/core": ^8.0.0-alpha.12
checksum: 10/9dcc79b9777a0169ffff9a9006d624066447231983bd2500726205e51f966b959ccc0bc0a0bdfc71068280aba71ac73674d31c6594dda7011d06ef34fd85085c
languageName: node
linkType: hard
"@babel/helper-replace-supers@workspace:^, @babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers":
version: 0.0.0-use.local
resolution: "@babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-member-expression-to-functions": "workspace:^"
"@babel/helper-optimise-call-expression": "workspace:^"
"@babel/traverse": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-simple-access@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-simple-access@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/5083e190186028e48fc358a192e4b93ab320bd016103caffcfda81302a13300ccce46c9cd255ae520c25d2a6a9b47671f93e5fe5678954a2329dc0a685465c49
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^8.0.0-alpha.12":
version: 8.0.0-alpha.12
resolution: "@babel/helper-simple-access@npm:8.0.0-alpha.12"
dependencies:
"@babel/traverse": "npm:^8.0.0-alpha.12"
"@babel/types": "npm:^8.0.0-alpha.12"
checksum: 10/87a6a23543c079f1b575ee14aa30985096ca1e317c2a1df5e82361067b145b1f6cdb34414058dc13e93fd7ad928adb00e21760851236fd2d29d5ecf7eb5ac82b
languageName: node
linkType: hard
"@babel/helper-simple-access@workspace:^, @babel/helper-simple-access@workspace:packages/babel-helper-simple-access":
version: 0.0.0-use.local
resolution: "@babel/helper-simple-access@workspace:packages/babel-helper-simple-access"
dependencies:
"@babel/core": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft