-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
8724 lines (7878 loc) · 296 KB
/
Copy pathyarn.lock
File metadata and controls
8724 lines (7878 loc) · 296 KB
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: 9
cacheKey: 10c0
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/parser@npm:^7.29.3":
version: 7.29.3
resolution: "@babel/parser@npm:7.29.3"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/f06920c819550c0db689e4c5b626bf55ba3cebf80ebe9ccfa434e134036cf3de50951fe759f74abb2dae381989239860bde46d4600328578ad1f7114c3711a6d
languageName: node
linkType: hard
"@babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.26.0":
version: 7.29.2
resolution: "@babel/runtime@npm:7.29.2"
checksum: 10c0/30b80a0140d16467792e1bbeb06f655b0dab70407da38dfac7fedae9c859f9ae9d846ef14ad77bd3814c064295fe9b1bc551f1541ea14646ae9f22b71a8bc17a
languageName: node
linkType: hard
"@babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f
languageName: node
linkType: hard
"@biomejs/biome@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/biome@npm:2.4.13"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.4.13"
"@biomejs/cli-darwin-x64": "npm:2.4.13"
"@biomejs/cli-linux-arm64": "npm:2.4.13"
"@biomejs/cli-linux-arm64-musl": "npm:2.4.13"
"@biomejs/cli-linux-x64": "npm:2.4.13"
"@biomejs/cli-linux-x64-musl": "npm:2.4.13"
"@biomejs/cli-win32-arm64": "npm:2.4.13"
"@biomejs/cli-win32-x64": "npm:2.4.13"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10c0/a8c09d7c05d834243a76704e31bda05346d2a06a75e90e6de2ef0d4edc33bd7d382b380bad9275ddd379e9e44ceaea9907a9c0de2156859b36b057c155f20a0e
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-darwin-arm64@npm:2.4.13"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-darwin-x64@npm:2.4.13"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.4.13"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-linux-arm64@npm:2.4.13"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-linux-x64-musl@npm:2.4.13"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-linux-x64@npm:2.4.13"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-win32-arm64@npm:2.4.13"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.4.13":
version: 2.4.13
resolution: "@biomejs/cli-win32-x64@npm:2.4.13"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@capsizecss/unpack@npm:^4.0.0":
version: 4.0.0
resolution: "@capsizecss/unpack@npm:4.0.0"
dependencies:
fontkitten: "npm:^1.0.0"
checksum: 10c0/47ed4fa100d015f28e1ccb6813fc9d6ce39012bed0508ec49ae6c1e0e6eaa86b1450aba1a05245e4e3e35087eeec636ecb9a000c50a4c5f349586d0d07cdc922
languageName: node
linkType: hard
"@clack/core@npm:1.3.1":
version: 1.3.1
resolution: "@clack/core@npm:1.3.1"
dependencies:
fast-wrap-ansi: "npm:^0.2.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/550f6e83574b12c94fcf67621c9e094419186bc2238c89a2f40b9f67c872b3563bb55381beb05ab48cef2d2b3b5d42c33d06bbba2fb28622fafab6afdde20262
languageName: node
linkType: hard
"@clack/prompts@npm:^1.2.0":
version: 1.4.0
resolution: "@clack/prompts@npm:1.4.0"
dependencies:
"@clack/core": "npm:1.3.1"
fast-string-width: "npm:^3.0.2"
fast-wrap-ansi: "npm:^0.2.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/851ea8ec1597b70ff2e4b3e2ed4e340f5f10877f86b0372a29d96d6c6131f2a5a46f75a98dcb77378d3ec88ffe1d276724f7385be534be06f8a4ba36a550bc01
languageName: node
linkType: hard
"@dimforge/rapier3d-compat@npm:~0.12.0":
version: 0.12.0
resolution: "@dimforge/rapier3d-compat@npm:0.12.0"
checksum: 10c0/c66c24f90649c0fc870679c12e7fec1a111080d44450169b57561f957d7b6b284ad8a3ceeba95533e213176ea171351acebd3dd43885fafb33f18bfbd9d507db
languageName: node
linkType: hard
"@emnapi/core@npm:^1.10.0":
version: 1.10.0
resolution: "@emnapi/core@npm:1.10.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.2.1"
tslib: "npm:^2.4.0"
checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.10.0":
version: 1.10.0
resolution: "@emnapi/runtime@npm:1.10.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.2.1, @emnapi/wasi-threads@npm:^1.2.1":
version: 1.2.1
resolution: "@emnapi/wasi-threads@npm:1.2.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/aix-ppc64@npm:0.25.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/aix-ppc64@npm:0.27.7"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-arm64@npm:0.25.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-arm64@npm:0.27.7"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-arm@npm:0.25.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-arm@npm:0.27.7"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-x64@npm:0.25.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-x64@npm:0.27.7"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/darwin-arm64@npm:0.25.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/darwin-arm64@npm:0.27.7"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/darwin-x64@npm:0.25.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/darwin-x64@npm:0.27.7"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/freebsd-arm64@npm:0.25.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/freebsd-arm64@npm:0.27.7"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/freebsd-x64@npm:0.25.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/freebsd-x64@npm:0.27.7"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-arm64@npm:0.25.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-arm64@npm:0.27.7"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-arm@npm:0.25.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-arm@npm:0.27.7"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-ia32@npm:0.25.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-ia32@npm:0.27.7"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-loong64@npm:0.25.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-loong64@npm:0.27.7"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-mips64el@npm:0.25.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-mips64el@npm:0.27.7"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-ppc64@npm:0.25.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-ppc64@npm:0.27.7"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-riscv64@npm:0.25.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-riscv64@npm:0.27.7"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-s390x@npm:0.25.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-s390x@npm:0.27.7"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-x64@npm:0.25.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-x64@npm:0.27.7"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/netbsd-arm64@npm:0.25.12"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/netbsd-arm64@npm:0.27.7"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/netbsd-x64@npm:0.25.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/netbsd-x64@npm:0.27.7"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openbsd-arm64@npm:0.25.12"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/openbsd-arm64@npm:0.27.7"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openbsd-x64@npm:0.25.12"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/openbsd-x64@npm:0.27.7"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openharmony-arm64@npm:0.25.12"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/openharmony-arm64@npm:0.27.7"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/sunos-x64@npm:0.25.12"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/sunos-x64@npm:0.27.7"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-arm64@npm:0.25.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/win32-arm64@npm:0.27.7"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-ia32@npm:0.25.12"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/win32-ia32@npm:0.27.7"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-x64@npm:0.25.12"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/win32-x64@npm:0.27.7"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.7.5":
version: 1.7.5
resolution: "@floating-ui/core@npm:1.7.5"
dependencies:
"@floating-ui/utils": "npm:^0.2.11"
checksum: 10c0/f9c52205e198b231d63a387b09c659aab08c46a1899e0b0bbe147b8b4f048b546f15ba17cb5d2a471da9534f1883d979425e13e5c4ceee67be63e4b0abd4db5d
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.0.0, @floating-ui/dom@npm:^1.6.13, @floating-ui/dom@npm:^1.7.6":
version: 1.7.6
resolution: "@floating-ui/dom@npm:1.7.6"
dependencies:
"@floating-ui/core": "npm:^1.7.5"
"@floating-ui/utils": "npm:^0.2.11"
checksum: 10c0/5c098e0d7b58c9bc769f276cca1766994c2c9c70c92d091a61bba8b3e9be53c011e0a79a8457fc2fb2f3d91697a26eb52e0a4962ef936dc963b45f58613c212f
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.2.11":
version: 0.2.11
resolution: "@floating-ui/utils@npm:0.2.11"
checksum: 10c0/f4bcea1559bdbb721ecc8e8ead423ac58d6a5b6e70b602cf0810ba6ad4ed1c77211b207faa88b278a9042f0c743133de08a203ed6741c1b6443423332884d5b3
languageName: node
linkType: hard
"@floating-ui/vue@npm:^1.1.6":
version: 1.1.11
resolution: "@floating-ui/vue@npm:1.1.11"
dependencies:
"@floating-ui/dom": "npm:^1.7.6"
"@floating-ui/utils": "npm:^0.2.11"
vue-demi: "npm:>=0.13.0"
checksum: 10c0/5b081a243925e201e83895631f6e3cb68c4563f2f67f21e9127ed8ca97bc2b86f32c44c506132d2827e989d1beb8bf8f6715a6f2e5d80ce70e847920aa758d38
languageName: node
linkType: hard
"@fontsource/orbitron@npm:^5.2.8":
version: 5.2.8
resolution: "@fontsource/orbitron@npm:5.2.8"
checksum: 10c0/978a2a85d5391eb5eb8d29cdff2b4e61595f79632bf0d58c85b2d88563c729aaf7c9d29d505224a6c200e422b1f2cc2af336be7183bbdb999abdd45d472c55aa
languageName: node
linkType: hard
"@fontsource/rajdhani@npm:^5.2.7":
version: 5.2.7
resolution: "@fontsource/rajdhani@npm:5.2.7"
checksum: 10c0/c1fe4a2265ae31bd40bbcbc233f6c8ecf9db92932bdb7b86b3d9529091c65f27189a1a328f07dbc164b6d4cdc609e40efd9035d5c499aeccdfea384dfd165587
languageName: node
linkType: hard
"@fontsource/share-tech-mono@npm:^5.2.7":
version: 5.2.7
resolution: "@fontsource/share-tech-mono@npm:5.2.7"
checksum: 10c0/60f7da82408a0e3fc0789bf4048449c9d648c6c85cae4dc3c25e6892388701d2ba34b7051a0919c959b31a1d079a71ac5183f4c270a0e69e158072bcdde79a5b
languageName: node
linkType: hard
"@formatjs/ecma402-abstract@npm:2.3.6":
version: 2.3.6
resolution: "@formatjs/ecma402-abstract@npm:2.3.6"
dependencies:
"@formatjs/fast-memoize": "npm:2.2.7"
"@formatjs/intl-localematcher": "npm:0.6.2"
decimal.js: "npm:^10.4.3"
tslib: "npm:^2.8.0"
checksum: 10c0/63be2a73d3168bf45ab5d50db58376e852db5652d89511ae6e44f1fa03ad96ebbfe9b06a1dfaa743db06e40eb7f33bd77530b9388289855cca79a0e3fc29eacf
languageName: node
linkType: hard
"@formatjs/fast-memoize@npm:2.2.7":
version: 2.2.7
resolution: "@formatjs/fast-memoize@npm:2.2.7"
dependencies:
tslib: "npm:^2.8.0"
checksum: 10c0/f5eabb0e4ab7162297df8252b4cfde194b23248120d9df267592eae2be2d2f7c4f670b5a70523d91b4ecdc35d40e65823bb8eeba8dd79fbf8601a972bf3b8866
languageName: node
linkType: hard
"@formatjs/icu-messageformat-parser@npm:2.11.4":
version: 2.11.4
resolution: "@formatjs/icu-messageformat-parser@npm:2.11.4"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.3.6"
"@formatjs/icu-skeleton-parser": "npm:1.8.16"
tslib: "npm:^2.8.0"
checksum: 10c0/3ea9e9dae18282881d19a5f88107b6013f514ec8675684ed2c04bee2a174032377858937243e3bd9c9263a470988a3773a53bf8d208a34a78e7843ce66f87f3b
languageName: node
linkType: hard
"@formatjs/icu-skeleton-parser@npm:1.8.16":
version: 1.8.16
resolution: "@formatjs/icu-skeleton-parser@npm:1.8.16"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.3.6"
tslib: "npm:^2.8.0"
checksum: 10c0/6fa1586dc11c925cd8d17e927cc635d238c969a6b7e97282a924376f78622fc25336c407589d19796fb6f8124a0e7765f99ecdb1aac014edcfbe852e7c3d87f3
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:0.6.2":
version: 0.6.2
resolution: "@formatjs/intl-localematcher@npm:0.6.2"
dependencies:
tslib: "npm:^2.8.0"
checksum: 10c0/22a17a4c67160b6c9f52667914acfb7b79cd6d80630d4ac6d4599ce447cb89d2a64f7d58fa35c3145ddb37fef893f0a45b9a55e663a4eb1f2ae8b10a89fac235
languageName: node
linkType: hard
"@iconify/collections@npm:^1.0.679":
version: 1.0.686
resolution: "@iconify/collections@npm:1.0.686"
dependencies:
"@iconify/types": "npm:*"
checksum: 10c0/82deecff65a8b02c98050dab6f7174daa215694612204cead69f803b03749f7e6370c923853b1839c5102b6d28134ced8cd573e6f35e8b32bc3e1b29492a02c7
languageName: node
linkType: hard
"@iconify/types@npm:*, @iconify/types@npm:^2.0.0":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 10c0/65a3be43500c7ccacf360e136d00e1717f050b7b91da644e94370256ac66f582d59212bdb30d00788aab4fc078262e91c95b805d1808d654b72f6d2072a7e4b2
languageName: node
linkType: hard
"@iconify/utils@npm:^3.1.1":
version: 3.1.3
resolution: "@iconify/utils@npm:3.1.3"
dependencies:
"@antfu/install-pkg": "npm:^1.1.0"
"@iconify/types": "npm:^2.0.0"
import-meta-resolve: "npm:^4.2.0"
checksum: 10c0/6d01196172ef062a9cd0ee299dff3a405221e65057d6cca9ac9fb4bacd7d78168d54b0837b75d5f163038d770a3a7e4449d68ea2fc7a577c01b9ab51bfd53c98
languageName: node
linkType: hard
"@iconify/vue@npm:^5.0.0":
version: 5.0.1
resolution: "@iconify/vue@npm:5.0.1"
dependencies:
"@iconify/types": "npm:^2.0.0"
peerDependencies:
vue: ">=3.0.0"
checksum: 10c0/780afb0bb6c098e4b9af1c82bbc7f4b3ad63f7ab01f01cb6abcebba54314a0f11ebe3e749a8dd17e20c9f7b7b94945d44ae5e94b0fe1dafec588ed69b93471e9
languageName: node
linkType: hard
"@internationalized/date@npm:^3.12.1, @internationalized/date@npm:^3.5.0":
version: 3.12.1
resolution: "@internationalized/date@npm:3.12.1"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 10c0/e06efa10bab7fcd88cdac1268d21f2e0fcdd6a4b5c2c9a6fdf381c94a166f3188ebb7a92b3405f3b689577bc18f98447433bedddc8885aab6a169bf0943b3875
languageName: node
linkType: hard
"@internationalized/number@npm:^3.5.0, @internationalized/number@npm:^3.6.6":
version: 3.6.6
resolution: "@internationalized/number@npm:3.6.6"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 10c0/70fe93dcbeb9b2048240dd26e98186ead2c7a14fc508da0ba5d995a3deb4a8176956361774ca927b4106bbd3f8411315b80de7cf9bfc727c0cff802b460e75d2
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
languageName: node
linkType: hard
"@jridgewell/remapping@npm:^2.3.5":
version: 2.3.5
resolution: "@jridgewell/remapping@npm:2.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@lhci/utils@npm:^0.15.1":
version: 0.15.1
resolution: "@lhci/utils@npm:0.15.1"
dependencies:
debug: "npm:^4.3.1"
isomorphic-fetch: "npm:^3.0.0"
js-yaml: "npm:^3.13.1"
lighthouse: "npm:12.6.1"
tree-kill: "npm:^1.2.1"
checksum: 10c0/85668ed527d79b68f606774bc8b1d37db8e1b3a7bc3d0a151e80a9e400158abab0103927e84531f6772329d6a23e0b2545f8035cb4d25b1c20eac854474e23b9
languageName: node
linkType: hard
"@mediapipe/tasks-vision@npm:0.10.17":
version: 0.10.17
resolution: "@mediapipe/tasks-vision@npm:0.10.17"
checksum: 10c0/f2f5dd9ca39d562b902a6d964f8b786f17a143f42776d0d26b8c79632b10cf210e28d98ec92de757b7bb2e6595ed4f9bbf5e49f1709b09dc08709bd276ced442
languageName: node
linkType: hard
"@monogrid/gainmap-js@npm:^3.0.6":
version: 3.4.0
resolution: "@monogrid/gainmap-js@npm:3.4.0"
dependencies:
promise-worker-transferable: "npm:^1.0.4"
peerDependencies:
three: ">= 0.159.0"
checksum: 10c0/06104767a0f542b36e1e203fe569f78996babcdd52661f42db4f079f372b272e0849b86f84f7690b2c165a8ba931f77ad324fe82a09c9b23e26d20e76cabd3e7
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^1.1.4":
version: 1.1.4
resolution: "@napi-rs/wasm-runtime@npm:1.1.4"
dependencies:
"@tybys/wasm-util": "npm:^0.10.1"
peerDependencies:
"@emnapi/core": ^1.7.1
"@emnapi/runtime": ^1.7.1
checksum: 10c0/2e88e1955258949ccf2d18c79975821ad38071b465ef126a5e14110977b97868867b016c1ad046e963cccc42c0bd9db6c8ff5fd1ebb61b87bb3487f339041658
languageName: node
linkType: hard
"@nodable/entities@npm:^2.1.0":
version: 2.1.0
resolution: "@nodable/entities@npm:2.1.0"
checksum: 10c0/5a4cba2b61a5b6c726328b18b1de6d033cae4a658a118644bf31e0bcbda126ea7b69385043dc556cf1ed859b9ca220e82b81b5e5c48ef1b519fb8ec104575dee
languageName: node
linkType: hard
"@nuxt/devtools-kit@npm:^3.2.1, @nuxt/devtools-kit@npm:^3.2.4":
version: 3.2.4
resolution: "@nuxt/devtools-kit@npm:3.2.4"
dependencies:
"@nuxt/kit": "npm:^4.4.2"
execa: "npm:^8.0.1"
peerDependencies:
vite: ">=6.0"
checksum: 10c0/799f0cd3c3a0d4b828134c0ea815228610e03bf6e55596c944d8fbb33fa44f4fcfa6bd3a100ab7e6fce572e08123105b0837f0f320c92329966ee39a681071bf
languageName: node
linkType: hard
"@nuxt/fonts@npm:^0.14.0":
version: 0.14.0
resolution: "@nuxt/fonts@npm:0.14.0"
dependencies:
"@nuxt/devtools-kit": "npm:^3.2.1"
"@nuxt/kit": "npm:^4.2.2"
consola: "npm:^3.4.2"
defu: "npm:^6.1.4"
fontless: "npm:^0.2.1"
h3: "npm:^1.15.5"
magic-regexp: "npm:^0.10.0"
ofetch: "npm:^1.5.1"
pathe: "npm:^2.0.3"
sirv: "npm:^3.0.2"
tinyglobby: "npm:^0.2.15"
ufo: "npm:^1.6.3"
unifont: "npm:^0.7.4"
unplugin: "npm:^3.0.0"
unstorage: "npm:^1.17.4"
checksum: 10c0/eb92360f07df25ab622a397172520119a8f1448c3ed418ac022626dc782d566886758d863185e55da02eff76e4b9431e82e6870af77000d723bfb74943a3f64c
languageName: node
linkType: hard
"@nuxt/icon@npm:^2.2.1":
version: 2.2.2
resolution: "@nuxt/icon@npm:2.2.2"
dependencies:
"@iconify/collections": "npm:^1.0.679"
"@iconify/types": "npm:^2.0.0"
"@iconify/utils": "npm:^3.1.1"
"@iconify/vue": "npm:^5.0.0"
"@nuxt/devtools-kit": "npm:^3.2.4"
"@nuxt/kit": "npm:^4.4.4"
consola: "npm:^3.4.2"
local-pkg: "npm:^1.1.2"
mlly: "npm:^1.8.2"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
picomatch: "npm:^4.0.4"
std-env: "npm:^4.1.0"
tinyglobby: "npm:^0.2.16"
checksum: 10c0/34e1e585d3f1378759b28af854eb91a4c0743da6755cdc5658daaa335f30c487d0e5de1ac6eb33dc6ab1817a010b610c39dc9a74d08e3f0f78cff4716bed6d9d
languageName: node
linkType: hard
"@nuxt/kit@npm:^3.13.2":
version: 3.21.6
resolution: "@nuxt/kit@npm:3.21.6"
dependencies:
c12: "npm:^3.3.4"
consola: "npm:^3.4.2"
defu: "npm:^6.1.7"
destr: "npm:^2.0.5"
errx: "npm:^0.1.0"
exsolve: "npm:^1.0.8"
ignore: "npm:^7.0.5"
jiti: "npm:^2.7.0"
klona: "npm:^2.0.6"
knitwork: "npm:^1.3.0"
mlly: "npm:^1.8.2"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.1"
rc9: "npm:^3.0.1"
scule: "npm:^1.3.0"
semver: "npm:^7.8.0"
tinyglobby: "npm:^0.2.16"
ufo: "npm:^1.6.4"
unctx: "npm:^2.5.0"
untyped: "npm:^2.0.0"
checksum: 10c0/75ba75f196b66e579afcfa1cbd22c8de363e6387c5bea57426660c19595c7a9ea4b4c6cf96108aa7dc7e35e4b622bb63cacd8878a03daf74f9825d528219c5a9
languageName: node
linkType: hard
"@nuxt/kit@npm:^4.2.2, @nuxt/kit@npm:^4.4.2, @nuxt/kit@npm:^4.4.4":
version: 4.4.6
resolution: "@nuxt/kit@npm:4.4.6"
dependencies:
c12: "npm:^3.3.4"
consola: "npm:^3.4.2"
defu: "npm:^6.1.7"
destr: "npm:^2.0.5"
errx: "npm:^0.1.0"
exsolve: "npm:^1.0.8"
ignore: "npm:^7.0.5"
jiti: "npm:^2.7.0"
klona: "npm:^2.0.6"
mlly: "npm:^1.8.2"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.1"
rc9: "npm:^3.0.1"
scule: "npm:^1.3.0"
semver: "npm:^7.8.0"
tinyglobby: "npm:^0.2.16"
ufo: "npm:^1.6.4"
unctx: "npm:^2.5.0"
untyped: "npm:^2.0.0"
checksum: 10c0/21e86542a94449197dfcd37ebe19c937aefba9f2b7e5d3ca2fabd79b9dace9c50aa9ee9318cfa5efacc44e1360977579c04c5e14b7d6c40e8964e3d887b0f51a
languageName: node
linkType: hard
"@nuxt/schema@npm:^4.4.2":
version: 4.4.6
resolution: "@nuxt/schema@npm:4.4.6"
dependencies:
"@vue/shared": "npm:^3.5.34"
defu: "npm:^6.1.7"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.1"
std-env: "npm:^4.1.0"
checksum: 10c0/92afd45b4303f9f98b65a72160bb8097db308ed0d583dca988684dd39491c94cff1c0c98fca63eb918c0a8e2d7de3426bec9a2cf5c6968cadd54f5f2191462e5
languageName: node
linkType: hard
"@nuxt/ui@npm:^4.6.1":
version: 4.7.1
resolution: "@nuxt/ui@npm:4.7.1"
dependencies:
"@floating-ui/dom": "npm:^1.7.6"
"@iconify/vue": "npm:^5.0.0"
"@internationalized/date": "npm:^3.12.1"
"@internationalized/number": "npm:^3.6.6"
"@nuxt/fonts": "npm:^0.14.0"
"@nuxt/icon": "npm:^2.2.1"
"@nuxt/kit": "npm:^4.4.2"
"@nuxt/schema": "npm:^4.4.2"
"@nuxtjs/color-mode": "npm:^3.5.2"
"@standard-schema/spec": "npm:^1.1.0"
"@tailwindcss/postcss": "npm:^4.2.4"
"@tailwindcss/vite": "npm:^4.2.4"
"@tanstack/vue-table": "npm:^8.21.3"
"@tanstack/vue-virtual": "npm:^3.13.24"