-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathyarn.lock
More file actions
1033 lines (953 loc) · 38.8 KB
/
yarn.lock
File metadata and controls
1033 lines (953 loc) · 38.8 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: 8
cacheKey: 10
"@esbuild/aix-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/aix-ppc64@npm:0.28.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm64@npm:0.28.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm@npm:0.28.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-x64@npm:0.28.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-arm64@npm:0.28.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-x64@npm:0.28.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-arm64@npm:0.28.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-x64@npm:0.28.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm64@npm:0.28.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm@npm:0.28.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ia32@npm:0.28.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-loong64@npm:0.28.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-mips64el@npm:0.28.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ppc64@npm:0.28.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-riscv64@npm:0.28.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-s390x@npm:0.28.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-x64@npm:0.28.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/netbsd-arm64@npm:0.28.0"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/netbsd-x64@npm:0.28.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/openbsd-arm64@npm:0.28.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/openbsd-x64@npm:0.28.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/openharmony-arm64@npm:0.28.0"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/sunos-x64@npm:0.28.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/win32-arm64@npm:0.28.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/win32-ia32@npm:0.28.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/win32-x64@npm:0.28.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@girs/accountsservice-1.0@npm:^1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/accountsservice-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/dfb1fc8c234d0dc26fbbe6e2a151cd8865d6d607198fcc1ae0d619625213547b7cd723c79e669342b4d9bd6463f9ca51246dd01f81af91248c6278cfc8bc11d0
languageName: node
linkType: hard
"@girs/adw-1@npm:^1.10.0-4.0.0-rc.9":
version: 1.10.0-4.0.0-rc.9
resolution: "@girs/adw-1@npm:1.10.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/gsk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gtk-4.0": "npm:4.23.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/dd10b2a0a62aa24edce0e8d0c69170faa7cbb1d39345e22cb93499bfb589933c01e8e3d55f65e449a05edbbd28f62b74e9235101d65e04f3ae886c5f89c765f0
languageName: node
linkType: hard
"@girs/atk-1.0@npm:2.60.0-4.0.0-rc.9, @girs/atk-1.0@npm:^2.60.0-4.0.0-rc.9":
version: 2.60.0-4.0.0-rc.9
resolution: "@girs/atk-1.0@npm:2.60.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/41943655bc9ad97326ede30878158f2514ad1f3786ea7a18f6cd4654b0ba7ddceff215670bc419550db8f7d7eeff3a3195b87e9b0b7b45e2ca22c89a5b19ab95
languageName: node
linkType: hard
"@girs/cairo-1.0@npm:1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/cairo-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/cd9709f7a02aeb02aae0dcb0090dee1a33090e174d48b72e2946cbd621b29c01dd61f735e5c3577d90b109b1637cc13dc0daf5c5a9f33820c919d4a1e03a99ed
languageName: node
linkType: hard
"@girs/clutter-18@npm:18.0.0-4.0.0-rc.9, @girs/clutter-18@npm:^18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/clutter-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/atk-1.0": "npm:2.60.0-4.0.0-rc.9"
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/cogl-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/mtk-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
checksum: 10/38983241fc096a1b46ea568a259fdb6fb5090adde52f50a6eebd2b0113b98ded057997251823806bb4ffd2ae47d0b60689fd3d39e3229e324e98124f5cc918bb
languageName: node
linkType: hard
"@girs/cogl-18@npm:18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/cogl-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/mtk-18": "npm:18.0.0-4.0.0-rc.9"
checksum: 10/6666ce974a251ec08189f1c9c6c7061c52b076bedb0bea265b612a1710f3871f9302cf29a8f9a3ba848401e36633c50f1234767f279fc7301b1118a6baff35cb
languageName: node
linkType: hard
"@girs/cogl-2.0@npm:^2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/cogl-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/cbcf7d24b751151a0a0e4dfceeb3969b0c128fd2e526adface891f004e26143c921ef077185b8ef3d6ca2027e51842368be1bcbef65411ff22bef08b3ffcaeb4
languageName: node
linkType: hard
"@girs/freetype2-2.0@npm:2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/freetype2-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/a0ee1c26bdea22f248bd8ea0e40ba6fafa22362d27f57c9b45dbde9243750e57b655de875e83233271dbe2cf181a77f5220ec9dab63e3426c3f130dd3ac580f8
languageName: node
linkType: hard
"@girs/gck-2@npm:4.4.0-4.0.0-rc.9":
version: 4.4.0-4.0.0-rc.9
resolution: "@girs/gck-2@npm:4.4.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/4af62e86553866e17c72904e6a973071749756e0837f7e9579bec51de94f5fa80b987be7ed8fb474ff489edcb1845d5331ab11e1c26a1205165cf8c0774d0998
languageName: node
linkType: hard
"@girs/gcr-4@npm:4.4.0-4.0.0-rc.9, @girs/gcr-4@npm:^4.4.0-4.0.0-rc.9":
version: 4.4.0-4.0.0-rc.9
resolution: "@girs/gcr-4@npm:4.4.0-4.0.0-rc.9"
dependencies:
"@girs/gck-2": "npm:4.4.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/96a440c3993a255f9542d480ad924f206452aa01299b3194b0a80ce8cce84ae36f9cd738d0d9e35c0f94d3102872d89812e38502c2a8f9ed7c3c0506088f4853
languageName: node
linkType: hard
"@girs/gdesktopenums-3.0@npm:3.0.0-4.0.0-rc.9":
version: 3.0.0-4.0.0-rc.9
resolution: "@girs/gdesktopenums-3.0@npm:3.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/759401a55342c7e4bcc9bb5a4986a7af23f2e6244863abff8c6bdad83793020b0831423111b5c04ea11cbf748ddaf391c9b4731cf0424cf467aaf698b23bea11
languageName: node
linkType: hard
"@girs/gdk-4.0@npm:4.0.0-4.0.0-rc.9":
version: 4.0.0-4.0.0-rc.9
resolution: "@girs/gdk-4.0@npm:4.0.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/7f84fd7c5b1ef2f07faf93f8b95d50d6fc5d43cfd7c6e399f1224ffa8a86bf368e1841150ba6fd32d3376c5d08108576c2644cf0854b715ce05cff66a91aee5e
languageName: node
linkType: hard
"@girs/gdkpixbuf-2.0@npm:2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/gdkpixbuf-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/8f31c2b9a23b68192d0063dfc56dcf1abae0eba3396d14cd0e59310bcf3d4be0e0978536573b117f6b2022c147034f75df6d9de17a6b03c9470fc4a32c8d0319
languageName: node
linkType: hard
"@girs/gdm-1.0@npm:^1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/gdm-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/6939620b2561672209626c1235eb24d08546cee3482b1da5145a21235c15a37b4a3cfd8d0307bc8e8189e54e06cb271d7cc5563a409dac5a4c3faaa353014e68
languageName: node
linkType: hard
"@girs/gio-2.0@npm:2.88.0-4.0.0-rc.9, @girs/gio-2.0@npm:^2.88.0-4.0.0-rc.9":
version: 2.88.0-4.0.0-rc.9
resolution: "@girs/gio-2.0@npm:2.88.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/780b54eea689688feacc911cf27dd9b898abcf0695ba41a09c2fd7d22b6002b4a21c87319e3b97b246a5db2363607838045db9ef4cc5134ff9631f2e944528ef
languageName: node
linkType: hard
"@girs/giounix-2.0@npm:2.0.0-4.0.0-rc.9, @girs/giounix-2.0@npm:^2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/giounix-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/98ac94ccef5cbddf70d0f22971301dbffbc76cd90b2b4c7de76c627f412798fb53c554f9f02f8913cd6905ac0aa30101d3891a6cc4a8858048873af705da5606
languageName: node
linkType: hard
"@girs/gjs@npm:4.0.0-rc.9, @girs/gjs@npm:^4.0.0-rc.9":
version: 4.0.0-rc.9
resolution: "@girs/gjs@npm:4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/f1b28a3be1bc36840eebd8e889b3e77009efa7352e2ff909068cc8c23fb6c96393956c93c4f39d567f1205e193bc20654d11c518b18a8cfe55728698c70061c8
languageName: node
linkType: hard
"@girs/gl-1.0@npm:1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/gl-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/f10520726c36ba3e96819691f94bd661a5caf34578609f1f93fe6e2b79d2ea73f0f0f4a952e464e13e45cf6425deb0eed0b3ecd01affcb4a0a79de3bf7871607
languageName: node
linkType: hard
"@girs/glib-2.0@npm:2.88.0-4.0.0-rc.9, @girs/glib-2.0@npm:^2.88.0-4.0.0-rc.9":
version: 2.88.0-4.0.0-rc.9
resolution: "@girs/glib-2.0@npm:2.88.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/5aa1eb199e46a002e464416ff75687446151c9486c327d09eb1379974b0f6149dbe5c99337550d518ed668fe017cb7313e5f579932d5a02342ddbb10c25d5a43
languageName: node
linkType: hard
"@girs/gmodule-2.0@npm:2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/gmodule-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/9a121f9c86ff6513dd7a9ffbde388ac48a38a2aad5ecabef0dcb59d256ea9a68a611477ee8e0b24aea254d8ac95e1070e9ba400cff6a572e9ab6c6755228f37a
languageName: node
linkType: hard
"@girs/gnome-shell@workspace:^, @girs/gnome-shell@workspace:packages/gnome-shell":
version: 0.0.0-use.local
resolution: "@girs/gnome-shell@workspace:packages/gnome-shell"
dependencies:
"@girs/accountsservice-1.0": "npm:^1.0.0-4.0.0-rc.9"
"@girs/adw-1": "npm:^1.10.0-4.0.0-rc.9"
"@girs/atk-1.0": "npm:^2.60.0-4.0.0-rc.9"
"@girs/clutter-18": "npm:^18.0.0-4.0.0-rc.9"
"@girs/cogl-2.0": "npm:^2.0.0-4.0.0-rc.9"
"@girs/gcr-4": "npm:^4.4.0-4.0.0-rc.9"
"@girs/gdm-1.0": "npm:^1.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:^2.88.0-4.0.0-rc.9"
"@girs/giounix-2.0": "npm:^2.0.0-4.0.0-rc.9"
"@girs/gjs": "npm:^4.0.0-rc.9"
"@girs/glib-2.0": "npm:^2.88.0-4.0.0-rc.9"
"@girs/gnomebg-4.0": "npm:^4.0.0-4.0.0-rc.9"
"@girs/gnomebluetooth-3.0": "npm:^3.0.0-4.0.0-rc.9"
"@girs/gnomedesktop-4.0": "npm:^4.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:^2.88.0-4.0.0-rc.9"
"@girs/gtk-4.0": "npm:^4.23.0-4.0.0-rc.9"
"@girs/gvc-1.0": "npm:^1.0.0-4.0.0-rc.9"
"@girs/meta-18": "npm:^18.0.0-4.0.0-rc.9"
"@girs/mtk-18": "npm:^18.0.0-4.0.0-rc.9"
"@girs/polkit-1.0": "npm:^1.0.0-4.0.0-rc.9"
"@girs/shell-18": "npm:^18.0.0-4.0.0-rc.9"
"@girs/shew-0": "npm:^0.0.0-4.0.0-rc.9"
"@girs/st-18": "npm:^18.0.0-4.0.0-rc.9"
"@girs/upowerglib-1.0": "npm:^1.91.1-4.0.0-rc.9"
"@tsconfig/strictest": "npm:^2.0.8"
typescript: "npm:^6.0.3"
languageName: unknown
linkType: soft
"@girs/gnomebg-4.0@npm:^4.0.0-4.0.0-rc.9":
version: 4.0.0-4.0.0-rc.9
resolution: "@girs/gnomebg-4.0@npm:4.0.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdesktopenums-3.0": "npm:3.0.0-4.0.0-rc.9"
"@girs/gdk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gnomedesktop-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/9214966bfbe690ba77bdeb9c11f846c4dbf7241bc5402cb327af54fc0ed7fde8d3dc1ea19316d00843532dab9aa288755a288ed624a7be306ba2140a15310170
languageName: node
linkType: hard
"@girs/gnomebluetooth-3.0@npm:^3.0.0-4.0.0-rc.9":
version: 3.0.0-4.0.0-rc.9
resolution: "@girs/gnomebluetooth-3.0@npm:3.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/d759ad4ec4239090f6bcdfef5728bd9da9ba148f6bfb299ddd38f1c694dea709d01de281a0c0fc7ff250f3cb490ad542d657c1d4ae776a98ef77a8428f9988f9
languageName: node
linkType: hard
"@girs/gnomedesktop-4.0@npm:4.0.0-4.0.0-rc.9, @girs/gnomedesktop-4.0@npm:^4.0.0-4.0.0-rc.9":
version: 4.0.0-4.0.0-rc.9
resolution: "@girs/gnomedesktop-4.0@npm:4.0.0-4.0.0-rc.9"
dependencies:
"@girs/gdesktopenums-3.0": "npm:3.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/c3b51e1e99becae0772ee62bf1529764c934c183f5b027f83bfa49bf6c0111a873e86d476b7333e672381c5a947cca6fc065de0e8dbdd12858d74a2e9285a87c
languageName: node
linkType: hard
"@girs/gobject-2.0@npm:2.88.0-4.0.0-rc.9, @girs/gobject-2.0@npm:^2.88.0-4.0.0-rc.9":
version: 2.88.0-4.0.0-rc.9
resolution: "@girs/gobject-2.0@npm:2.88.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/8a0f698e34a20411e5b2f173bfb1a6d81a4d7accd10a44ba8611e3df35e8eb8431d69ca6c167a1c45715112bafdd8fbc486b0d714677b84c07e8f2479ee0d76f
languageName: node
linkType: hard
"@girs/graphene-1.0@npm:1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/graphene-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/140cc52bcbd898e3f55a88f4b21938e1a7929508f056bc9393d48da00e5dceae2d5171c70b0bc6b8ec61de82799867e7ad604e371b73debbfd399d24d62a4a20
languageName: node
linkType: hard
"@girs/gsk-4.0@npm:4.0.0-4.0.0-rc.9":
version: 4.0.0-4.0.0-rc.9
resolution: "@girs/gsk-4.0@npm:4.0.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/9bdcaa8e546ffbc2be4d5c28ac902feb204f135cca3f69e77328a1b694f7dea6b78afea9ddcf3087402f7bac4c614ebdeb8505870cd20c0fc5e15ac2782f8e6f
languageName: node
linkType: hard
"@girs/gtk-4.0@npm:4.23.0-4.0.0-rc.9, @girs/gtk-4.0@npm:^4.23.0-4.0.0-rc.9":
version: 4.23.0-4.0.0-rc.9
resolution: "@girs/gtk-4.0@npm:4.23.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/gsk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/c7266b0a7949bb1c0de3ce31c4cc1d68c1007c0ebf83d08aeb494bfbb143723068bd9fada10a3cc4caf79f512550c8f2b4eb7bad001089bcebb52607125c390c
languageName: node
linkType: hard
"@girs/gvc-1.0@npm:1.0.0-4.0.0-rc.9, @girs/gvc-1.0@npm:^1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/gvc-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/3c8d7e9e098e95bfd408114c40ab19865d5f48bfea7374f920893cf72df8bc06c575e186661c63684c010d95a829b8ae69f43702ad0fcf9cff58ad7840efb558
languageName: node
linkType: hard
"@girs/harfbuzz-0.0@npm:13.2.1-4.0.0-rc.9":
version: 13.2.1-4.0.0-rc.9
resolution: "@girs/harfbuzz-0.0@npm:13.2.1-4.0.0-rc.9"
dependencies:
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/b8757e3f211fd47de740fdab898b5f305d24a00c0a149c64d736a46777f8c9f2f8d7e7902bdbf63c7a7b77fca8a92cae3af557350d77422e8fbfecd758630834
languageName: node
linkType: hard
"@girs/meta-18@npm:18.0.0-4.0.0-rc.9, @girs/meta-18@npm:^18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/meta-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/atk-1.0": "npm:2.60.0-4.0.0-rc.9"
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/clutter-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/cogl-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdesktopenums-3.0": "npm:3.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/mtk-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/xfixes-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/xlib-2.0": "npm:2.0.0-4.0.0-rc.9"
checksum: 10/2489207870d838f63edb8e9a3dfd9ab7f6c00a6fbae7153703ec2b2d78d741caa3dac0c9722c12feb84476d91cf5eec368c92be9721efc5e5ab562106f0e016d
languageName: node
linkType: hard
"@girs/mtk-18@npm:18.0.0-4.0.0-rc.9, @girs/mtk-18@npm:^18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/mtk-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/aaa010b043a991a90cddb11dfb93113b5401fb38d62cbfcc3edf46a6cf8d4c5824b7830b61158639bb7a2896825594cbe8d5240c708805e29bb6bbdfe747e55a
languageName: node
linkType: hard
"@girs/nm-1.0@npm:1.56.0-4.0.0-rc.9":
version: 1.56.0-4.0.0-rc.9
resolution: "@girs/nm-1.0@npm:1.56.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/baa6949ecd497ae510f8fed98357657ddf31407ed98340c38428fec241670bcaccea9e0ecafbc39e49022a99a8359266a3e6e264ff82abcc66584d91eeaed3a2
languageName: node
linkType: hard
"@girs/pango-1.0@npm:1.57.1-4.0.0-rc.9":
version: 1.57.1-4.0.0-rc.9
resolution: "@girs/pango-1.0@npm:1.57.1-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
checksum: 10/c2199df6d3eea50f258ca1f4f1f189f083c4e874de987bca88db38bb5db09808cc22d10efa47fd6ab9323a3e6a47c1af8d6892fd11b19cfc330a7383b62221db
languageName: node
linkType: hard
"@girs/pangocairo-1.0@npm:1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/pangocairo-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
checksum: 10/51936327a753b0876bc5c69271d0540279dd46e4ec5c7ca6a4f7027e20111a656dfcdad6958ff45eaac4ffc4c1dca4f782b2aac8d34720d979f47ad85025d322
languageName: node
linkType: hard
"@girs/polkit-1.0@npm:1.0.0-4.0.0-rc.9, @girs/polkit-1.0@npm:^1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/polkit-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/fe95baf42de0513fc46480c257d8424f981842c6716a143cc324287ce38f8e7978fbb8a824e0f1ceb5cfbf7f2de001653eda9ad1227dafb564c007bd2fe7a1bc
languageName: node
linkType: hard
"@girs/polkitagent-1.0@npm:1.0.0-4.0.0-rc.9":
version: 1.0.0-4.0.0-rc.9
resolution: "@girs/polkitagent-1.0@npm:1.0.0-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/polkit-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/74f1c783c0d2e658bec5a861e5b5e3902d65214544963ce11c62cc476164906c27524b2d40f4c19c149d33b3432c056dacc6a8be5f84c625323e1a03f17d1486
languageName: node
linkType: hard
"@girs/shell-18@npm:^18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/shell-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/atk-1.0": "npm:2.60.0-4.0.0-rc.9"
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/clutter-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/cogl-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gck-2": "npm:4.4.0-4.0.0-rc.9"
"@girs/gcr-4": "npm:4.4.0-4.0.0-rc.9"
"@girs/gdesktopenums-3.0": "npm:3.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/giounix-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/gvc-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/meta-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/mtk-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/nm-1.0": "npm:1.56.0-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/polkit-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/polkitagent-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/st-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/xfixes-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/xlib-2.0": "npm:2.0.0-4.0.0-rc.9"
checksum: 10/45749f7b0e53c216297dbaacffb2ad7bfb39a0cc360c2e4f2043695acbb1f451dea27a36f841682d4c8d76c929497474fe38bea50339cf64f7b55892d89b1c65
languageName: node
linkType: hard
"@girs/shew-0@npm:^0.0.0-4.0.0-rc.9":
version: 0.0.0-4.0.0-rc.9
resolution: "@girs/shew-0@npm:0.0.0-4.0.0-rc.9"
dependencies:
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/gsk-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/gtk-4.0": "npm:4.23.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/pangocairo-1.0": "npm:1.0.0-4.0.0-rc.9"
checksum: 10/89dde009dfd625c60dd6d1d6b62786599e88c4583722d5252a428f3680cc613af79824f7a65fd8820bad509f3920c3597c0dc701438c8567c1b121e11e8d421a
languageName: node
linkType: hard
"@girs/st-18@npm:18.0.0-4.0.0-rc.9, @girs/st-18@npm:^18.0.0-4.0.0-rc.9":
version: 18.0.0-4.0.0-rc.9
resolution: "@girs/st-18@npm:18.0.0-4.0.0-rc.9"
dependencies:
"@girs/atk-1.0": "npm:2.60.0-4.0.0-rc.9"
"@girs/cairo-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/clutter-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/cogl-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/freetype2-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gdesktopenums-3.0": "npm:3.0.0-4.0.0-rc.9"
"@girs/gdkpixbuf-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gl-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/graphene-1.0": "npm:1.0.0-4.0.0-rc.9"
"@girs/harfbuzz-0.0": "npm:13.2.1-4.0.0-rc.9"
"@girs/meta-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/mtk-18": "npm:18.0.0-4.0.0-rc.9"
"@girs/pango-1.0": "npm:1.57.1-4.0.0-rc.9"
"@girs/xfixes-4.0": "npm:4.0.0-4.0.0-rc.9"
"@girs/xlib-2.0": "npm:2.0.0-4.0.0-rc.9"
checksum: 10/993b839fe9ef830f2087308a839990452ff4500ba7c4df97f7ac06cc0579a4232d2a0428d602b247e8023c9818f263ccb5d26c0237fb6f60c8963986be9c8688
languageName: node
linkType: hard
"@girs/upowerglib-1.0@npm:^1.91.1-4.0.0-rc.9":
version: 1.91.1-4.0.0-rc.9
resolution: "@girs/upowerglib-1.0@npm:1.91.1-4.0.0-rc.9"
dependencies:
"@girs/gio-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/glib-2.0": "npm:2.88.0-4.0.0-rc.9"
"@girs/gmodule-2.0": "npm:2.0.0-4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/58c81fb796ae1a6c6004eff8131c72ab33b756f08aa782a0ab92252a381a2962f983489e7deed1c017c692656c6a02c8e00169cb9773133cc7acc95743799670
languageName: node
linkType: hard
"@girs/xfixes-4.0@npm:4.0.0-4.0.0-rc.9":
version: 4.0.0-4.0.0-rc.9
resolution: "@girs/xfixes-4.0@npm:4.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/d2c0eaa0ac6d1e7cd563808fb0e6c9b884d6cf88e2a7bd2555f8282ad024ad89f1781e885e621a098e2ee11aa4506de6dd7fd18604d0eab9d112dc0e50d0b824
languageName: node
linkType: hard
"@girs/xlib-2.0@npm:2.0.0-4.0.0-rc.9":
version: 2.0.0-4.0.0-rc.9
resolution: "@girs/xlib-2.0@npm:2.0.0-4.0.0-rc.9"
dependencies:
"@girs/gjs": "npm:4.0.0-rc.9"
"@girs/gobject-2.0": "npm:2.88.0-4.0.0-rc.9"
checksum: 10/3891c7a2209ac3256e771c0e3c953fdb0f298365e250b9f0da881fcfc9bdc7c0b7b67495c19ce9a11fa95e6b777eae5f3b9c7fdb38db401227ef7e679bba27c0
languageName: node
linkType: hard
"@gjsify/gnome-shell-hello-world-example@workspace:examples/hello-world":
version: 0.0.0-use.local
resolution: "@gjsify/gnome-shell-hello-world-example@workspace:examples/hello-world"
dependencies:
"@girs/gjs": "npm:^4.0.0-rc.9"
"@girs/gnome-shell": "workspace:^"
"@girs/gobject-2.0": "npm:^2.88.0-4.0.0-rc.9"
"@girs/st-18": "npm:^18.0.0-4.0.0-rc.9"
"@tsconfig/strictest": "npm:^2.0.8"
adm-zip: "npm:^0.5.17"
esbuild: "npm:^0.28.0"
typescript: "npm:6.0.2"
languageName: unknown
linkType: soft
"@tsconfig/strictest@npm:^2.0.8":
version: 2.0.8
resolution: "@tsconfig/strictest@npm:2.0.8"
checksum: 10/74c493af61886c2653df94635ecb79a0d9e61ecc0136475698cfa4adbb8957583497a1907de4ed9882557fd22d187985a4e4ab28290db236d7a0dd8264a6ba44
languageName: node
linkType: hard
"adm-zip@npm:^0.5.17":
version: 0.5.17
resolution: "adm-zip@npm:0.5.17"
checksum: 10/035ea96d04376c290bed3401b67d1a2a2654996450ec9056dccc0fb194cb6a956bf7ad388d2648b0e1775338a377805601deca4bcd689658dc1d39247a1e9bdd
languageName: node
linkType: hard
"esbuild@npm:^0.28.0":
version: 0.28.0
resolution: "esbuild@npm:0.28.0"
dependencies:
"@esbuild/aix-ppc64": "npm:0.28.0"
"@esbuild/android-arm": "npm:0.28.0"
"@esbuild/android-arm64": "npm:0.28.0"
"@esbuild/android-x64": "npm:0.28.0"
"@esbuild/darwin-arm64": "npm:0.28.0"
"@esbuild/darwin-x64": "npm:0.28.0"
"@esbuild/freebsd-arm64": "npm:0.28.0"
"@esbuild/freebsd-x64": "npm:0.28.0"
"@esbuild/linux-arm": "npm:0.28.0"
"@esbuild/linux-arm64": "npm:0.28.0"
"@esbuild/linux-ia32": "npm:0.28.0"
"@esbuild/linux-loong64": "npm:0.28.0"
"@esbuild/linux-mips64el": "npm:0.28.0"
"@esbuild/linux-ppc64": "npm:0.28.0"
"@esbuild/linux-riscv64": "npm:0.28.0"
"@esbuild/linux-s390x": "npm:0.28.0"
"@esbuild/linux-x64": "npm:0.28.0"
"@esbuild/netbsd-arm64": "npm:0.28.0"
"@esbuild/netbsd-x64": "npm:0.28.0"
"@esbuild/openbsd-arm64": "npm:0.28.0"
"@esbuild/openbsd-x64": "npm:0.28.0"
"@esbuild/openharmony-arm64": "npm:0.28.0"
"@esbuild/sunos-x64": "npm:0.28.0"
"@esbuild/win32-arm64": "npm:0.28.0"
"@esbuild/win32-ia32": "npm:0.28.0"
"@esbuild/win32-x64": "npm:0.28.0"
dependenciesMeta:
"@esbuild/aix-ppc64":
optional: true
"@esbuild/android-arm":
optional: true
"@esbuild/android-arm64":
optional: true
"@esbuild/android-x64":
optional: true
"@esbuild/darwin-arm64":
optional: true
"@esbuild/darwin-x64":
optional: true
"@esbuild/freebsd-arm64":
optional: true
"@esbuild/freebsd-x64":
optional: true
"@esbuild/linux-arm":
optional: true
"@esbuild/linux-arm64":
optional: true
"@esbuild/linux-ia32":
optional: true
"@esbuild/linux-loong64":
optional: true
"@esbuild/linux-mips64el":
optional: true
"@esbuild/linux-ppc64":
optional: true
"@esbuild/linux-riscv64":
optional: true
"@esbuild/linux-s390x":
optional: true
"@esbuild/linux-x64":
optional: true
"@esbuild/netbsd-arm64":
optional: true
"@esbuild/netbsd-x64":
optional: true
"@esbuild/openbsd-arm64":
optional: true
"@esbuild/openbsd-x64":
optional: true
"@esbuild/openharmony-arm64":
optional: true
"@esbuild/sunos-x64":
optional: true
"@esbuild/win32-arm64":
optional: true
"@esbuild/win32-ia32":
optional: true
"@esbuild/win32-x64":
optional: true
bin:
esbuild: bin/esbuild
checksum: 10/49eafc8906cc4a760a1704556bd3b301f808fcdcf2725190383f151741226bf2a2898a03da75a06a896d6217dadc4f3f3168983557ee31bae602e2e37779a83a
languageName: node
linkType: hard
"gnome-shell@workspace:.":
version: 0.0.0-use.local
resolution: "gnome-shell@workspace:."
dependencies:
prettier: "npm:^3.8.3"
typescript: "npm:^6.0.3"
languageName: unknown
linkType: soft
"prettier@npm:^3.8.3":
version: 3.8.3
resolution: "prettier@npm:3.8.3"
bin:
prettier: bin/prettier.cjs
checksum: 10/4b3b12cbb29e4c96bed936e5d070167552500c18d37676fb3e0caae6199c42860662608e4dc116230698f6e2bb0267ef2548158224c92d40f188d309d72fdd6f
languageName: node
linkType: hard
"typescript@npm:6.0.2":
version: 6.0.2
resolution: "typescript@npm:6.0.2"
bin:
tsc: bin/tsc
tsserver: bin/tsserver