forked from nicolo-ribaudo/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
17555 lines (15881 loc) · 661 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: 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: 503a58d6e9d645a20debd34fa8df79fb435a79a34b1d487b9ff0be9f20712b1594ce21da16b63af7db8a6b34472212572e53a55613a5a6b3134b23fc74843d04
languageName: node
linkType: hard
"@babel-baseline/core@npm:@babel/core@7.23.2, @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: b69d7008695b2ac7a3a2db83c5c712fbb79f7031c4480f6351cde327930e38873003d1d021059b729a1d0cb48093f1d384c64269b78f6189f50051fe4f64dc2d
languageName: node
linkType: hard
"@babel-baseline/generator@npm:@babel/generator@7.23.0, @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: bd1598bd356756065d90ce26968dd464ac2b915c67623f6f071fb487da5f9eb454031a380e20e7c9a7ce5c4a49d23be6cb9efde404952b0b3f3c0c3a9b73d68a
languageName: node
linkType: hard
"@babel-baseline/helper-compilation-targets@npm:@babel/helper-compilation-targets@7.22.15, @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: 9706decaa1591cf44511b6f3447eb9653b50ca3538215fe2e5387a8598c258c062f4622da5b95e61f0415706534deee619bbf53a2889f9bd967949b8f6024e0e
languageName: node
linkType: hard
"@babel-baseline/helper-validator-identifier@npm:@babel/helper-validator-identifier@7.22.20, @babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel-baseline/parser@npm:@babel/parser@7.23.0, @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: 201641e068f8cca1ff12b141fcba32d7ccbabc586961bd1b85ae89d9695867f84d57fc2e1176dc4981fd28e5e97ca0e7c32cd688bd5eabb641a302abc0cb5040
languageName: node
linkType: hard
"@babel-baseline/traverse@npm:@babel/traverse@7.23.2, @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: e4fcb8f8395804956df4ae1301230a14b6eb35b74a7058a0e0b40f6f4be7281e619e6dafe400e833d4512da5d61cf17ea177d04b00a8f7cf3d8d69aff83ca3d8
languageName: node
linkType: hard
"@babel-baseline/types@npm:@babel/types@7.23.0, @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: 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/core@7.23.2"
"@babel-baseline/generator": "npm:@babel/generator@7.23.0"
"@babel-baseline/helper-compilation-targets": "npm:@babel/helper-compilation-targets@7.22.15"
"@babel-baseline/helper-validator-identifier": "npm:@babel/helper-validator-identifier@7.22.20"
"@babel-baseline/parser": "npm:@babel/parser@7.23.0"
"@babel-baseline/traverse": "npm:@babel/traverse@7.23.2"
"@babel-baseline/types": "npm:@babel/types@7.23.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.5":
version: 8.0.0-alpha.5
resolution: "@babel/cli@npm:8.0.0-alpha.5"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.17"
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.5
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.mjs
babel-external-helpers: ./bin/babel-external-helpers.mjs
checksum: 77e3c1c201439833e5dd068582161858501a91525f3838c22a03d0be825adfcf7a0c902a70950d4278d813491de7ead2671b1ef046177e54a52d061fa0159d1b
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.17"
"@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: "npm:^4.0.1"
convert-source-map: "npm:^2.0.0"
fs-readdir-recursive: "npm:^1.1.0"
glob: "npm:^7.2.0"
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: 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: bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/code-frame@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/code-frame@npm:8.0.0-alpha.5"
dependencies:
"@babel/highlight": "npm:^8.0.0-alpha.5"
chalk: "npm:^5.3.0"
checksum: 7ba62d415bed25c13b9626f7b0cca7bdac260bb903d6d57bf2a24629e91249c6bbafdede4ee9546946ae07f965ca576050f48f01d56fd311214b866b741e52e4
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:^"
chalk: "condition:BABEL_8_BREAKING ? ^5.3.0 : ^2.4.2 (esm:default|Chalk)"
import-meta-resolve: "npm:^4.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: 6797f59857917e57e1765811e4f48371f2bc6063274be012e380e83cbc1a4f7931d616c235df56404134aa4bb4775ee61f7b382688314e1b625a4d51caabd734
languageName: node
linkType: hard
"@babel/compat-data@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/compat-data@npm:8.0.0-alpha.5"
checksum: d7fc901227b93cf4d99e8163739d8a39ed75f75aace2a8bd9183848de7b7f55e76a028fb0db52ec4178808e5b2120590de627364fbcaa5b5abc6e8f44334c2db
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/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: a2c79790c38b95de1f540d26d0434c7bf8ce64c02c407f65b6bc5d9a84ada0769d2660612c16627493024e897a9b56aa2534f7213329a3c19e5ed9d39c6a0c03
languageName: node
linkType: hard
"@babel/core@npm:8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/core@npm:8.0.0-alpha.5"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^8.0.0-alpha.5"
"@babel/generator": "npm:^8.0.0-alpha.5"
"@babel/helper-compilation-targets": "npm:^8.0.0-alpha.5"
"@babel/helper-module-transforms": "npm:^8.0.0-alpha.5"
"@babel/helpers": "npm:^8.0.0-alpha.5"
"@babel/parser": "npm:^8.0.0-alpha.5"
"@babel/template": "npm:^8.0.0-alpha.5"
"@babel/traverse": "npm:^8.0.0-alpha.5"
"@babel/types": "npm:^8.0.0-alpha.5"
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: 24460f9eaff93d81337aae41d01d09ee19bf8b511156d0134aa6715a3ceae6e7198ae64a76468d44efe65497b5c3fe9bfe29f0207b805c8cb9dcc680b6fa3a70
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.17"
"@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:^10.9.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:^8.22.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
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:^8.22.0"
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.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.5":
version: 8.0.0-alpha.5
resolution: "@babel/generator@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^3.0.2"
checksum: cd29faeee100e2ce21309ffcbb093744a56fad60878050058eeaf13f1825c3620de8735a67c0f765191fd4d3ef0024c1b5275a5e01ace9a0ec9b43328393e234
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.2"
"@jridgewell/sourcemap-codec": "npm:^1.4.15"
"@jridgewell/trace-mapping": "npm:^0.3.17"
"@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.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-annotate-as-pure@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: 2905cafc7f08042220426772a048cd2c457b82f76bd3f940cc26aa6d1131c68a7a21a555c4725713a58efd9a67012221459d0e519704b96397f9b03adddb9db1
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/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: e0fe6b902902221c60862846ace1c50106d8875b73d0c013e05dd2a311180d4847c600a88161bc50467f6680b6dacf13be906a39b874088a1d97363c9adbfb7d
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:^"
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.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-compilation-targets@npm:8.0.0-alpha.5"
dependencies:
"@babel/compat-data": "npm:^8.0.0-alpha.5"
"@babel/helper-validator-option": "npm:^8.0.0-alpha.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^7.14.1"
semver: "npm:^7.3.4"
checksum: 6f2e0ae4f97d50bc3a8d0cd58d1f3523698122484aad96d6150dfdd32595def8c46d6177ec8cb110318f38e17da9a238cd631952ab89059c61574f21c139714b
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.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-create-class-features-plugin@npm:8.0.0-alpha.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.5"
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.5"
"@babel/helper-function-name": "npm:^8.0.0-alpha.5"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.5"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.5"
"@babel/helper-replace-supers": "npm:^8.0.0-alpha.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0-alpha.5"
"@babel/helper-split-export-declaration": "npm:^8.0.0-alpha.5"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.5
checksum: b42cc680a1c10c6363c6c101e26b3259e61bd8dbf51f012b2f046141a5e66dffc4b384a4c4495ef72ecd61e3f199a4782a281cf5a00bcfafa9a5c03556715be1
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.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:8.0.0-alpha.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^7.3.4"
peerDependencies:
"@babel/core": ^8.0.0-alpha.5
checksum: 92f6c8b9ae6300b4d373ea84c6f5a8f5059548b9a0920a7aa3e04689092a847248dfc7cb9d97a5808cbe6aea08c2dfd717d0126b4fbfc487b9d5f7b0cdf248b4
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.4.4":
version: 0.4.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.4.4"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 16c312e40ecf2ead81f3ab7275387079071012d2363022c04cf16d56fe0d781185f3a517b928f4556c716ae45e0567b817b636d5cd2fee8fb2ce2b18a04c5bcd
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.5.0":
version: 0.5.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.5.0"
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: f849e816ec4b182a3e8fa8e09ff016f88bb95259cd6b2190b815c48f83c3d3b68e973a8ec72acc5086bfe93705cbd46ec089c06476421d858597780e42235a03
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: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-environment-visitor@npm:8.0.0-alpha.5"
checksum: a594cdb6d26d6628cadb5024869c74e81a37194965006166e2b21bc5227c4a9923612c1696ac45350dd137dfa28d3ae77552fcb59ab40a549785acbeff7f8448
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:
"@jridgewell/gen-mapping": "npm:^0.3.3"
"@types/semver": "npm:^7.3.4"
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
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: 7b2ae024cd7a09f19817daf99e0153b3bf2bc4ab344e197e8d13623d5e36117ed0b110914bc248faa64e8ccd3e97971ec7b41cc6fd6163a2b980220c58dcdf6d
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-function-name@npm:8.0.0-alpha.5"
dependencies:
"@babel/template": "npm:^8.0.0-alpha.5"
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: b4917bba5e56bdf80af5dc42a9557d180aff56ebb12f8422f1bdf9cd5e8a5407d9f5d80704038295be22a2d74bb8620c4b0f30f8e1a661ffc84f2ae90b2c4bfb
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/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: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-hoist-variables@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: eed8c0ae7337728f7b0197faa7e5240cd3e9ceba9a68323b0d999fd5dca854cb69eee90fcd87e8a9fef676b90361433061bfcde90b562212c22e3fc059738b53
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-member-expression-to-functions@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-member-expression-to-functions@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: 5481743e8b6e88ad442310230097b35171f1899b5bebc3179a6fb14ecc43ba761769422bedf6e892b9bb278dd3cd314751f792304a99b29b0e1405a85c6b5922
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: 5ecf9345a73b80c28677cfbe674b9f567bb0d079e37dcba9055e36cb337db24ae71992a58e1affa9d14a60d3c69907d30fe1f80aea105184501750a58d15c81c
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-module-imports@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: 3fc2584afc60db4f0e2fea8e6e2201765b931a9c89c499923778a9c39919175364aeb2b7bf23b947e799adc52c17f545aebbedee65873fc45a17b8d668d869a7
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: d72fe444f7b6c5aadaac8f393298d603eedd48e5dead67273a48e5c83a677cbccbd8a12a06c5bf5d97924666083279158a4bd0e799d28b86cbbfacba9e41f598
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-module-transforms@npm:8.0.0-alpha.5"
dependencies:
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.5"
"@babel/helper-module-imports": "npm:^8.0.0-alpha.5"
"@babel/helper-simple-access": "npm:^8.0.0-alpha.5"
"@babel/helper-split-export-declaration": "npm:^8.0.0-alpha.5"
"@babel/helper-validator-identifier": "npm:^8.0.0-alpha.5"
peerDependencies:
"@babel/core": ^8.0.0-alpha.5
checksum: 056ead8e1b954f65d2076711520bf6ed53b702cad69e8d76680e3b3a106847dfe97dd8a57ca2fb5d4f97a1ef7dae93c39c4b68f32d726c50dc70af3d259e0341
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:^"
"@babel/traverse": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-optimise-call-expression@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-optimise-call-expression@npm:8.0.0-alpha.5"
dependencies:
"@babel/types": "npm:^8.0.0-alpha.5"
checksum: 2647002b8bf825c402b29d36761f5c6446170c6f4eb4c7347e51eb88c415d800283c6785d848f0a3db6978a4d22d873834883cf8b93ad15ed8c6389a1256ffa6
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: ab220db218089a2aadd0582f5833fd17fa300245999f5f8784b10f5a75267c4e808592284a29438a0da365e702f05acb369f99e1c915c02f9f9210ec60eab8ea
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-plugin-utils@npm:8.0.0-alpha.5"
checksum: 409982be51a4672a03a8a6c3bb2ae1adc997914430c614f715207a972c48dd4451c1ea22e80e16af59c0c6a0d1cb89ef1d17038416d2d0c975daeb80c3b8863b
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"
languageName: unknown
linkType: soft
"@babel/helper-remap-async-to-generator@npm:^8.0.0-alpha.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-remap-async-to-generator@npm:8.0.0-alpha.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0-alpha.5"
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.5"
"@babel/helper-wrap-function": "npm:^8.0.0-alpha.5"
peerDependencies:
"@babel/core": ^8.0.0-alpha.5
checksum: c0f90dab4f0669c704ce35af69e81f59d439223b904d66c2c509b007b972979d9faf4bda94ee024de41a8e51751527126475593582b223656c3c03e0dc882900
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.5":
version: 8.0.0-alpha.5
resolution: "@babel/helper-replace-supers@npm:8.0.0-alpha.5"
dependencies:
"@babel/helper-environment-visitor": "npm:^8.0.0-alpha.5"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0-alpha.5"
"@babel/helper-optimise-call-expression": "npm:^8.0.0-alpha.5"
peerDependencies:
"@babel/core": ^8.0.0-alpha.5
checksum: ed00746af84dcab2463eac1f6e58c3339913b4b8d8f778cd601c4ed2e6004f637d683085f2ec009ba5d79392920ec38fd9e6c0a7c530fe929521057e7bf43b47
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-environment-visitor": "workspace:^"
"@babel/helper-member-expression-to-functions": "workspace:^"
"@babel/helper-optimise-call-expression": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 7d5430eecf880937c27d1aed14245003bd1c7383ae07d652b3932f450f60bfcf8f2c1270c593ab063add185108d26198c69d1aca0e6fb7c6fdada4bcf72ab5b7
languageName: node
linkType: hard