generated from JPBM135/Template-TS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8988 lines (8079 loc) · 312 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@actions/core@npm:^1.10.1":
version: 1.10.1
resolution: "@actions/core@npm:1.10.1"
dependencies:
"@actions/http-client": "npm:^2.0.1"
uuid: "npm:^8.3.2"
checksum: 7a61446697a23dcad3545cf0634dedbdedf20ae9a0ee6ee977554589a15deb4a93593ee48a41258933d58ce0778f446b0d2c162b60750956fb75e0b9560fb832
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 4a09f6bdbe50ce68b5cf8a7254d176230d6a74bccf6ecc3857feee209a8c950ba9adec87cc5ecceb04110182d1c17117234e45557d72fde6229b7fd3a395322a
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.2.0
resolution: "@actions/http-client@npm:2.2.0"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 868fe8529d78beb72f84ea2486e232fa6f66abe00d6ec4591b98c37e762c3d812868a3548638d75b49917961fd10ba1556916b47b1e9e4b55c266e2013c3ae8e
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 5b8751918e5bf0bebd923ba917fb1c0e294401e7ff0037f32c92a4efa4215550df1f6633c63fd4efb2bdaae8711e69b9e36925857db1f38935ff62a5c92ec29e
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:16.3.1":
version: 16.3.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:16.3.1"
checksum: bebc7f79a2d267e8933020548a1f20f813152e7e2c1a57d7118fbfbce5eeed778a5668411e56688559df8cb3c38caa9b0e7c03171af9222cce20506c1ebae55b
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:^16.2.0":
version: 16.3.1
resolution: "@angular-eslint/eslint-plugin-template@npm:16.3.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:16.3.1"
"@angular-eslint/utils": "npm:16.3.1"
"@typescript-eslint/type-utils": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: c25279cc5ef8990a39ae85409adb0fbdcfc53f39eb716ec583ee8065781bb622db2f7d2ba672133074cde0a29dda8bdb3b6c51cf183bea62c01c980970e758ac
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:^16.2.0":
version: 16.3.1
resolution: "@angular-eslint/eslint-plugin@npm:16.3.1"
dependencies:
"@angular-eslint/utils": "npm:16.3.1"
"@typescript-eslint/utils": "npm:5.62.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 80a84e64fffde4734625db4b74c8e67ca3ef71b575c3b7377819043b52cd77730826beb5e0b83857c0d706e83f22ead8935f7c1195ae81ac2a8ddcafe8e9f0b2
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:^16.2.0":
version: 16.3.1
resolution: "@angular-eslint/template-parser@npm:16.3.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:16.3.1"
eslint-scope: "npm:^7.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 02af2c8a6fbe5b30f27feaa32167168d9b4f8903f7afbe6b792d6ea588d3ad920b37cb2e8cd0d257c49b646b3d9c1ff39d474838e51f5e074538844e002855f1
languageName: node
linkType: hard
"@angular-eslint/utils@npm:16.3.1":
version: 16.3.1
resolution: "@angular-eslint/utils@npm:16.3.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:16.3.1"
"@typescript-eslint/utils": "npm:5.62.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: df6dfb9fc870a9bcaa212cd0c637b6933f55c59e5be902e0df4e7287ed8fac1fb6d98506d8192c2861b6adc190cb8dae1f1a38430d9258b1bc0a8e451109b699
languageName: node
linkType: hard
"@astrojs/compiler@npm:^2.0.0":
version: 2.4.1
resolution: "@astrojs/compiler@npm:2.4.1"
checksum: 082c4c8e24412c7867276f26d3d925dc619c1ed283ac301357fc9912f4c1397960c93262308ca98651331f2c9e7355ea667311287e5b47ebf0f85be883944f0c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: e3966f2717b7ebd9610524730e10b75ee74154f62617e5e115c97dbbbabc5351845c9aa850788012cb4d9aee85c3dc59fe6bef36690f244e8dcfca34bd35e9c9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.16.0":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/generator@npm:^7.20.1":
version: 7.20.1
resolution: "@babel/generator@npm:7.20.1"
dependencies:
"@babel/types": "npm:^7.20.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 1dee876dad277d5d0c86f27ba19ba4f5b0fdbdd4e352eb46e380c9ac0691af3463db67283ae073b9245b3acf3966b6bce6701699f03d8a65510f1bc2b9f9694d
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: a69dd50ea91d8143b899a40ca7a387fa84dbaa02e606d8692188c7c59bd4007bcd632c189f7b7dab72cb7a016e159557a6fccf7093ab9b584d87cf2ea8cf36b7
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-function-name@npm:7.19.0"
dependencies:
"@babel/template": "npm:^7.18.10"
"@babel/types": "npm:^7.19.0"
checksum: a4181d23274d926df3a8032fb2ff210b8a27c83fedd9e7bd148a6877cb4070be4caf69ddae1bf29447e1e84da807ff769a31ca661ef55ecd4d4d672073a68c48
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 830aa7ca663b0d2a025513ab50a9a10adb2a37d8cf3ba40bb74b8ac14d45fbc3d08c37b1889b10d36558edfbd34ff914909118ae156c2f0915f2057901b90eff
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 1335b510a9aefcbf60d89648e622715774e56040d72302dc5e176c8d837c9ab81414ccfa9ed771a9f98da7192579bb12ab7a95948bfdc69b03b4a882b3983e48
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helper-string-parser@npm:7.19.4"
checksum: e20c81582e75df2a020a1c547376668a6e1e1c2ca535a6b7abb25b83d5536c99c0d113184bbe87c1a26e923a9bb0c6e5279fca8db6bd609cd3499fafafc01598
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: f978ecfea840f65b64ab9e17fac380625a45f4fe1361eeb29867fcfd1c9eaa72abd7023f2f40ac3168587d7e5153660d16cfccb352a557be2efd347a051b4b20
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: a6a6928d25099ef04c337fcbb829fab8059bb67d31ac37212efd611bdbe247d0e71a5096c4524272cb56399f40251fac57c025e42d3bc924db0183a6435a60ac
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@babel/parser@npm:^7.10.3, @babel/parser@npm:^7.18.10, @babel/parser@npm:^7.20.1":
version: 7.20.1
resolution: "@babel/parser@npm:7.20.1"
bin:
parser: ./bin/babel-parser.js
checksum: c58dabbad5b1f411b70a4e030cc1306ad667cb3d277adf8859cead5a8d5d744909ff7f493d0f47c12dccdf67a992526a9965b596a3d9c5824a45ee1ec55bbe97
languageName: node
linkType: hard
"@babel/runtime@npm:^7.23.2":
version: 7.23.8
resolution: "@babel/runtime@npm:7.23.8"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: ba5e8fbb32ef04f6cab5e89c54a0497c2fde7b730595cc1af93496270314f13ff2c6a9360fdb2f0bdd4d6b376752ce3cf85642bd6b876969a6a62954934c2df8
languageName: node
linkType: hard
"@babel/template@npm:^7.18.10":
version: 7.18.10
resolution: "@babel/template@npm:7.18.10"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/parser": "npm:^7.18.10"
"@babel/types": "npm:^7.18.10"
checksum: d807944427b8899125e71687d2f631731e44a64a155d39e479ff9d1eaf5341de78c5c19cf64d3341bd676e16f779f13b588aac0ec75bf65f822d8936ee227490
languageName: node
linkType: hard
"@babel/traverse@npm:^7.10.3":
version: 7.20.1
resolution: "@babel/traverse@npm:7.20.1"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.20.1"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-function-name": "npm:^7.19.0"
"@babel/helper-hoist-variables": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/parser": "npm:^7.20.1"
"@babel/types": "npm:^7.20.0"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 6b2611f26bcc52bcdf515ed4932c316b20511f4595ca26a1db71b18273d7e2aaf435156708f968914bbf34a2dfac7c3e6618fffc9169eed5537dcdb85143da5a
languageName: node
linkType: hard
"@babel/types@npm:^7.10.3, @babel/types@npm:^7.18.10, @babel/types@npm:^7.18.6, @babel/types@npm:^7.19.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.8.3":
version: 7.20.0
resolution: "@babel/types@npm:7.20.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.19.4"
"@babel/helper-validator-identifier": "npm:^7.19.1"
to-fast-properties: "npm:^2.0.0"
checksum: 8b9c960eb013142eaf6294d77b75e469b7e97461bd7ad939e625ed74865fbf5a1c20b7989ec3357d0f4ffd93dd79d6daead08c0c06647815d8bbe94dae445f5c
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.41.0":
version: 0.41.0
resolution: "@es-joy/jsdoccomment@npm:0.41.0"
dependencies:
comment-parser: "npm:1.4.1"
esquery: "npm:^1.5.0"
jsdoc-type-pratt-parser: "npm:~4.0.0"
checksum: 1fa27531eba32e4699664da53a0865aeeda1f7e83ac156fe53b7a6b09d2f3816baa94a34845ff019c10289b09572bda5519ec917e3e241088975477fa880f72d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/aix-ppc64@npm:0.19.11"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/android-arm64@npm:0.19.11"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/android-arm@npm:0.19.11"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/android-x64@npm:0.19.11"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/darwin-arm64@npm:0.19.11"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/darwin-x64@npm:0.19.11"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/freebsd-arm64@npm:0.19.11"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/freebsd-x64@npm:0.19.11"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-arm64@npm:0.19.11"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-arm@npm:0.19.11"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-ia32@npm:0.19.11"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-loong64@npm:0.19.11"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-mips64el@npm:0.19.11"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-ppc64@npm:0.19.11"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-riscv64@npm:0.19.11"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-s390x@npm:0.19.11"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/linux-x64@npm:0.19.11"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/netbsd-x64@npm:0.19.11"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/openbsd-x64@npm:0.19.11"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/sunos-x64@npm:0.19.11"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/win32-arm64@npm:0.19.11"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/win32-ia32@npm:0.19.11"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.11":
version: 0.19.11
resolution: "@esbuild/win32-x64@npm:0.19.11"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.56.0":
version: 8.56.0
resolution: "@eslint/js@npm:8.56.0"
checksum: 60b3a1cf240e2479cec9742424224465dc50e46d781da1b7f5ef240501b2d1202c225bd456207faac4b34a64f4765833345bc4ddffd00395e1db40fa8c426f5a
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.0
resolution: "@fastify/busboy@npm:2.1.0"
checksum: 7bb641080aac7cf01d88749ad331af10ba9ec3713ec07cabbe833908c75df21bd56249bb6173bdec07f5a41896b21e3689316f86684c06635da45f91ff4565a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.2":
version: 2.0.2
resolution: "@humanwhocodes/object-schema@npm:2.0.2"
checksum: 6fd83dc320231d71c4541d0244051df61f301817e9f9da9fd4cb7e44ec8aacbde5958c1665b0c419401ab935114fdf532a6ad5d4e7294b1af2f347dd91a6983f
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
languageName: node
linkType: hard
"@jpbm135/self-hosted-action-polyfill@workspace:.":
version: 0.0.0-use.local
resolution: "@jpbm135/self-hosted-action-polyfill@workspace:."
dependencies:
"@actions/core": "npm:^1.10.1"
"@actions/exec": "npm:^1.1.1"
"@swc/cli": "npm:^0.1.63"
"@swc/core": "npm:^1.3.103"
"@types/node": "npm:^20.11.4"
cpy-cli: "npm:^5.0.0"
del-cli: "npm:^5.1.0"
env-cmd: "npm:^10.1.0"
esbuild: "npm:^0.19.11"
eslint: "npm:^8.56.0"
eslint-config-neon: "npm:^0.1.57"
prettier: "npm:^3.2.2"
typescript: "npm:^5.3.3"
vitest: "npm:^1.2.0"
yarn: "npm:^1.22.21"
languageName: unknown
linkType: soft
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.2
resolution: "@jridgewell/gen-mapping@npm:0.3.2"
dependencies:
"@jridgewell/set-array": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 82685c8735c63fe388badee45e2970a6bc83eed1c84d46d8652863bafeca22a6c6cc15812f5999a4535366f4668ccc9ba6d5c67dfb72e846fa8a063806f10afd
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:3.1.0":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: 78055e2526108331126366572045355051a930f017d1904a4f753d3f4acee8d92a14854948095626f6163cffc24ea4e3efa30637417bb866b84743dec7ef6fd9
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.17
resolution: "@jridgewell/trace-mapping@npm:0.3.17"
dependencies:
"@jridgewell/resolve-uri": "npm:3.1.0"
"@jridgewell/sourcemap-codec": "npm:1.4.14"
checksum: 40b65fcbdd7cc5a60dbe0a2780b6670ebbc1a31c96e43833e0bf2fee0773b1ba5137ab7d137b28fc3f215567bd5f9d06b7b30634ba15636c13bd8a863c20ae9a
languageName: node
linkType: hard
"@microsoft/tsdoc-config@npm:0.16.2":
version: 0.16.2
resolution: "@microsoft/tsdoc-config@npm:0.16.2"
dependencies:
"@microsoft/tsdoc": "npm:0.14.2"
ajv: "npm:~6.12.6"
jju: "npm:~1.4.0"
resolve: "npm:~1.19.0"
checksum: 9e8c176b68f01c8bb38e6365d5b543e471bba59fced6070d9bd35b32461fbd650c2e1a6f686e8dca0cf22bc5e7d796e4213e66bce4426c8cb9864c1f6ca6836c
languageName: node
linkType: hard
"@microsoft/tsdoc@npm:0.14.2":
version: 0.14.2
resolution: "@microsoft/tsdoc@npm:0.14.2"
checksum: c018857ad439144559ce34a397a29ace7cf5b24b999b8e3c1b88d878338088b3a453eaac4435beaf2c7eae13c4c0aac81e42f96f0f1d48e8d4eeb438eb3bb82f
languageName: node
linkType: hard
"@mole-inc/bin-wrapper@npm:^8.0.1":
version: 8.0.1
resolution: "@mole-inc/bin-wrapper@npm:8.0.1"
dependencies:
bin-check: "npm:^4.1.0"
bin-version-check: "npm:^5.0.0"
content-disposition: "npm:^0.5.4"
ext-name: "npm:^5.0.0"
file-type: "npm:^17.1.6"
filenamify: "npm:^5.0.2"
got: "npm:^11.8.5"
os-filter-obj: "npm:^2.0.0"
checksum: 70cfed319a46b1b8e3878dc4bdff4ced81aa913a6d9ab557b41e40f7ebdd5d39b0506b008609d8620739b63c2e4396fe0deec072487e84c717a1f3b24836ef94
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:^13.5.4":
version: 13.5.6
resolution: "@next/eslint-plugin-next@npm:13.5.6"
dependencies:
glob: "npm:7.1.7"
checksum: c357c4b8b7b67c22e552e4979e7d2c71a21423ccf18ed3928402aa5a84a8d683e0bbcde4acc092a493f933033fffbb882a00ae075e190c2488ed3fb774d3a2be
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.1"
checksum: 7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3
languageName: node
linkType: hard
"@npmcli/config@npm:^6.0.0":
version: 6.4.0
resolution: "@npmcli/config@npm:6.4.0"
dependencies:
"@npmcli/map-workspaces": "npm:^3.0.2"
ci-info: "npm:^3.8.0"
ini: "npm:^4.1.0"
nopt: "npm:^7.0.0"
proc-log: "npm:^3.0.0"
read-package-json-fast: "npm:^3.0.2"
semver: "npm:^7.3.5"
walk-up-path: "npm:^3.0.1"
checksum: 532f13063fd181c6b30d77121e6d1e7af5e9353a3091dd76f7addac9602dba5af2e19f5248220a49dcbbec0d0a1c75c0ff99ca3ccc4b566fba201e6aae204d2d
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^3.0.2":
version: 3.0.4
resolution: "@npmcli/map-workspaces@npm:3.0.4"
dependencies:
"@npmcli/name-from-folder": "npm:^2.0.0"
glob: "npm:^10.2.2"
minimatch: "npm:^9.0.0"
read-package-json-fast: "npm:^3.0.0"
checksum: caeb5f911d9b7ae0be01436442e6ec6b25aef750fe923de7a653eb62999d35b9f8be67c3f856790350ac86d9cea4a52532859b621eea81738f576302ecdd7475
languageName: node
linkType: hard
"@npmcli/name-from-folder@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/name-from-folder@npm:2.0.0"
checksum: 1aa551771d98ab366d4cb06b33efd3bb62b609942f6d9c3bb667c10e5bb39a223d3e330022bc980a44402133e702ae67603862099ac8254dad11f90e77409827
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@pkgr/core@npm:^0.1.0":
version: 0.1.0
resolution: "@pkgr/core@npm:0.1.0"
checksum: 8f4a0aa6cc1c445fec4f5f12157047e8a05e30b5c03441156f40203d6430f84d15135e8f1a6886e6c9800ff0e4a75d9d3419a43dbcd7490683f2882375a3b99a
languageName: node
linkType: hard
"@pkgr/utils@npm:^2.3.1":
version: 2.3.1
resolution: "@pkgr/utils@npm:2.3.1"
dependencies:
cross-spawn: "npm:^7.0.3"
is-glob: "npm:^4.0.3"
open: "npm:^8.4.0"
picocolors: "npm:^1.0.0"
tiny-glob: "npm:^0.2.9"
tslib: "npm:^2.4.0"
checksum: 50c2480c3580c0f75b9325271deeb4f4cb24f6a29f1ebc5a7de0c6991380e23625fd554ecdbc7d7e93ad6dab92532a254f7490433cf2b8f1b18d75c9e01636ea
languageName: node
linkType: hard
"@rollup/rollup-android-arm-eabi@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-android-arm-eabi@npm:4.9.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@rollup/rollup-android-arm64@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-android-arm64@npm:4.9.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-arm64@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-darwin-arm64@npm:4.9.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-x64@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-darwin-x64@npm:4.9.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-linux-arm-gnueabihf@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.9.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-gnu@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.9.5"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-musl@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.9.5"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-riscv64-gnu@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.9.5"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-gnu@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.9.5"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-musl@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-linux-x64-musl@npm:4.9.5"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-win32-arm64-msvc@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.9.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-win32-ia32-msvc@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.9.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@rollup/rollup-win32-x64-msvc@npm:4.9.5":
version: 4.9.5
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.9.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@rushstack/eslint-patch@npm:^1.5.1":
version: 1.6.1
resolution: "@rushstack/eslint-patch@npm:1.6.1"
checksum: 194ffb605cde00c567fe7a5025e221433a61d871d366a9558525b867f073d2d3ddb4d6bd44cf8f05edabfb37a0b99ce128230e0a367d7af2c3b1db90d02b873f
languageName: node
linkType: hard
"@sinclair/typebox@npm:^0.27.8":
version: 0.27.8
resolution: "@sinclair/typebox@npm:0.27.8"
checksum: ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e
languageName: node
linkType: hard
"@sindresorhus/is@npm:^4.0.0":
version: 4.6.0
resolution: "@sindresorhus/is@npm:4.6.0"
checksum: 33b6fb1d0834ec8dd7689ddc0e2781c2bfd8b9c4e4bacbcb14111e0ae00621f2c264b8a7d36541799d74888b5dccdf422a891a5cb5a709ace26325eedc81e22e
languageName: node
linkType: hard
"@swc/cli@npm:^0.1.63":
version: 0.1.63
resolution: "@swc/cli@npm:0.1.63"
dependencies:
"@mole-inc/bin-wrapper": "npm:^8.0.1"
commander: "npm:^7.1.0"
fast-glob: "npm:^3.2.5"
semver: "npm:^7.3.8"
slash: "npm:3.0.0"
source-map: "npm:^0.7.3"
peerDependencies:
"@swc/core": ^1.2.66
chokidar: ^3.5.1
peerDependenciesMeta:
chokidar:
optional: true
bin:
spack: bin/spack.js
swc: bin/swc.js
swcx: bin/swcx.js
checksum: a8389647e6727f062903e4f90f3c4d6be979f5c85c50fd31342f580e7c58e514ecb13103a011806b33b09509aa6ebe61146efad803c5f55f4c70bcdb9c8f93da
languageName: node
linkType: hard
"@swc/core-darwin-arm64@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-darwin-arm64@npm:1.3.103"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@swc/core-darwin-x64@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-darwin-x64@npm:1.3.103"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@swc/core-linux-arm-gnueabihf@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.103"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@swc/core-linux-arm64-gnu@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-linux-arm64-gnu@npm:1.3.103"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@swc/core-linux-arm64-musl@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-linux-arm64-musl@npm:1.3.103"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@swc/core-linux-x64-gnu@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-linux-x64-gnu@npm:1.3.103"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@swc/core-linux-x64-musl@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-linux-x64-musl@npm:1.3.103"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@swc/core-win32-arm64-msvc@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-win32-arm64-msvc@npm:1.3.103"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@swc/core-win32-ia32-msvc@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-win32-ia32-msvc@npm:1.3.103"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@swc/core-win32-x64-msvc@npm:1.3.103":
version: 1.3.103
resolution: "@swc/core-win32-x64-msvc@npm:1.3.103"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@swc/core@npm:^1.3.103":
version: 1.3.103
resolution: "@swc/core@npm:1.3.103"
dependencies:
"@swc/core-darwin-arm64": "npm:1.3.103"
"@swc/core-darwin-x64": "npm:1.3.103"
"@swc/core-linux-arm-gnueabihf": "npm:1.3.103"
"@swc/core-linux-arm64-gnu": "npm:1.3.103"
"@swc/core-linux-arm64-musl": "npm:1.3.103"
"@swc/core-linux-x64-gnu": "npm:1.3.103"
"@swc/core-linux-x64-musl": "npm:1.3.103"
"@swc/core-win32-arm64-msvc": "npm:1.3.103"