-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbun.lock
More file actions
2604 lines (1768 loc) · 224 KB
/
Copy pathbun.lock
File metadata and controls
2604 lines (1768 loc) · 224 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
{
"lockfileVersion": 1,
"configVersion": 1,
"workspaces": {
"": {
"name": "dotfiles",
"devDependencies": {
"@alexgorbatchev/typescript-ai-policy": "5.0.2",
"@dprint/json": "^0.21.1",
"@dprint/markdown": "^0.20.0",
"@typescript/native-preview": "catalog:typescript",
"bun-plugin-tailwind": "^0.1.2",
"dprint": "^0.51.1",
"oxfmt": "0.42.0",
"oxlint": "^1.57.0",
"ts-unused": "^1.0.3",
"tsd": "^0.33.0",
},
},
"packages/arch": {
"name": "@dotfiles/arch",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/archive-extractor": {
"name": "@dotfiles/archive-extractor",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/utils": "workspace:*",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/build": {
"name": "@dotfiles/build",
"version": "1.0.0",
"dependencies": {
"dax-sh": "catalog:",
},
"devDependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/utils": "workspace:*",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"dts-bundle-generator": "^9.5.1",
"es-module-lexer": "^2.0.0",
"ts-morph": "^24.0.0",
"ts-unused": "^1.0.0",
"typescript": "catalog:typescript",
},
},
"packages/cli": {
"name": "@dotfiles/cli",
"version": "1.0.0",
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/dashboard": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/features": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/generator-orchestrator": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/installer-apt": "workspace:*",
"@dotfiles/installer-brew": "workspace:*",
"@dotfiles/installer-cargo": "workspace:*",
"@dotfiles/installer-curl-binary": "workspace:*",
"@dotfiles/installer-curl-script": "workspace:*",
"@dotfiles/installer-curl-tar": "workspace:*",
"@dotfiles/installer-dmg": "workspace:*",
"@dotfiles/installer-dnf": "workspace:*",
"@dotfiles/installer-gitea": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/installer-manual": "workspace:*",
"@dotfiles/installer-npm": "workspace:*",
"@dotfiles/installer-pacman": "workspace:*",
"@dotfiles/installer-pkg": "workspace:*",
"@dotfiles/installer-zsh-plugin": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/shell-init-generator": "workspace:*",
"@dotfiles/shim-generator": "workspace:*",
"@dotfiles/symlink-generator": "workspace:*",
"@dotfiles/tool-config-builder": "workspace:*",
"@dotfiles/utils": "workspace:*",
"@dotfiles/version-checker": "workspace:*",
"@dotfiles/virtual-env": "workspace:*",
"commander": "^14.0.1",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
"zod": "catalog:",
},
},
"packages/config": {
"name": "@dotfiles/config",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/tool-config-builder": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/core": {
"name": "@dotfiles/core",
"version": "0.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer-apt": "workspace:*",
"@dotfiles/installer-brew": "workspace:*",
"@dotfiles/installer-cargo": "workspace:*",
"@dotfiles/installer-curl-binary": "workspace:*",
"@dotfiles/installer-curl-script": "workspace:*",
"@dotfiles/installer-curl-tar": "workspace:*",
"@dotfiles/installer-dmg": "workspace:*",
"@dotfiles/installer-dnf": "workspace:*",
"@dotfiles/installer-gitea": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/installer-manual": "workspace:*",
"@dotfiles/installer-npm": "workspace:*",
"@dotfiles/installer-pacman": "workspace:*",
"@dotfiles/installer-pkg": "workspace:*",
"@dotfiles/installer-zsh-plugin": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"@dotfiles/utils": "workspace:*",
"type-fest": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/installer": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@dotfiles/tool-config-builder": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/dashboard": {
"name": "@dotfiles/dashboard",
"version": "1.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"@dotfiles/version-checker": "workspace:*",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-preact": "^0.545.0",
"preact": "^10.25.4",
"preact-iso": "^2.9.0",
"preact-render-to-string": "^6.5.11",
"tailwind-merge": "^3.4.0",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@happy-dom/global-registrator": "^18.0.1",
"@rageltd/bun-test-utils": "catalog:testing",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/preact": "^3.2.4",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "catalog:system",
"@types/dompurify": "^3.2.0",
"@types/marked": "^6.0.0",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"bun-plugin-tailwind": "^0.1.2",
"dompurify": "^3.3.3",
"marked": "^18.0.0",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.4.0",
"typescript": "catalog:typescript",
},
},
"packages/docs": {
"name": "@dotfiles/docs",
"version": "0.0.1",
"dependencies": {
"@astrojs/starlight": "^0.38.3",
"astro": "^6.0.1",
"sharp": "^0.34.2",
},
"devDependencies": {
"@types/bun": "^1.3.12",
},
},
"packages/downloader": {
"name": "@dotfiles/downloader",
"version": "1.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/utils": "workspace:*",
"osc-progress": "^0.3.0",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/e2e-test": {
"name": "@dotfiles/e2e-test",
"version": "0.0.0",
"dependencies": {
"@dotfiles/cli": "workspace:*",
"@dotfiles/core": "workspace:*",
"dax-sh": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/features": {
"name": "@dotfiles/features",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"typescript": "catalog:typescript",
},
},
"packages/file-system": {
"name": "@dotfiles/file-system",
"version": "0.0.0",
"dependencies": {
"@dotfiles/utils": "workspace:*",
"memfs": "^4.49.0",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/generator-orchestrator": {
"name": "@dotfiles/generator-orchestrator",
"version": "1.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/shell-init-generator": "workspace:*",
"@dotfiles/shim-generator": "workspace:*",
"@dotfiles/symlink-generator": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"@dotfiles/utils": "workspace:*",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/http-proxy": {
"name": "@dotfiles/http-proxy",
"version": "1.0.0",
"dependencies": {
"@dotfiles/utils": "workspace:*",
"minimatch": "^10.0.1",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"typescript": "catalog:typescript",
},
},
"packages/installer": {
"name": "@dotfiles/installer",
"version": "1.0.0",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@dotfiles/arch": "workspace:*",
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/shell-init-generator": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"@dotfiles/utils": "workspace:*",
"minimatch": "^10.0.1",
"semver": "^7.6.3",
"smol-toml": "^1.3.1",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/installer-apt": "workspace:*",
"@dotfiles/installer-brew": "workspace:*",
"@dotfiles/installer-cargo": "workspace:*",
"@dotfiles/installer-curl-script": "workspace:*",
"@dotfiles/installer-curl-tar": "workspace:*",
"@dotfiles/installer-dnf": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/installer-manual": "workspace:*",
"@dotfiles/installer-npm": "workspace:*",
"@dotfiles/installer-pacman": "workspace:*",
"@dotfiles/installer-pkg": "workspace:*",
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/symlink-generator": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/babel__code-frame": "^7.0.6",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@types/semver": "^7.5.8",
"@typescript/native-preview": "catalog:typescript",
"tslog": "catalog:",
"typescript": "catalog:typescript",
},
},
"packages/installer-apt": {
"name": "@dotfiles/installer-apt",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/file-system": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-brew": {
"name": "@dotfiles/installer-brew",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/file-system": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-cargo": {
"name": "@dotfiles/installer-cargo",
"version": "0.0.0",
"dependencies": {
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"smol-toml": "^1.3.1",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-curl-binary": {
"name": "@dotfiles/installer-curl-binary",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-curl-script": {
"name": "@dotfiles/installer-curl-script",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-curl-tar": {
"name": "@dotfiles/installer-curl-tar",
"version": "0.0.0",
"dependencies": {
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-dmg": {
"name": "@dotfiles/installer-dmg",
"version": "0.0.0",
"dependencies": {
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
},
},
"packages/installer-dnf": {
"name": "@dotfiles/installer-dnf",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/file-system": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-gitea": {
"name": "@dotfiles/installer-gitea",
"version": "0.0.0",
"dependencies": {
"@dotfiles/arch": "workspace:*",
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"minimatch": "^10.0.1",
"semver": "^7.6.3",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@types/semver": "catalog:system",
},
},
"packages/installer-github": {
"name": "@dotfiles/installer-github",
"version": "0.0.0",
"dependencies": {
"@dotfiles/arch": "workspace:*",
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"minimatch": "^10.0.1",
"semver": "^7.6.3",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@types/semver": "catalog:system",
},
},
"packages/installer-manual": {
"name": "@dotfiles/installer-manual",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-npm": {
"name": "@dotfiles/installer-npm",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-pacman": {
"name": "@dotfiles/installer-pacman",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/file-system": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/installer-pkg": {
"name": "@dotfiles/installer-pkg",
"version": "0.0.0",
"dependencies": {
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
},
},
"packages/installer-zsh-plugin": {
"name": "@dotfiles/installer-zsh-plugin",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
},
},
"packages/logger": {
"name": "@dotfiles/logger",
"version": "0.0.0",
"dependencies": {
"tslog": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/registry": {
"name": "@dotfiles/registry",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/utils": "workspace:*",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/registry-database": {
"name": "@dotfiles/registry-database",
"version": "0.0.0",
"dependencies": {
"@dotfiles/logger": "workspace:*",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/shell-emissions": {
"name": "@dotfiles/shell-emissions",
"version": "1.0.0",
"devDependencies": {
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/shell-init-generator": {
"name": "@dotfiles/shell-init-generator",
"version": "1.0.0",
"dependencies": {
"@dotfiles/archive-extractor": "workspace:*",
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/downloader": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/shell-emissions": "workspace:*",
"@dotfiles/utils": "workspace:*",
"minimatch": "^10.0.1",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/shim-generator": {
"name": "@dotfiles/shim-generator",
"version": "1.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
},
"devDependencies": {
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/symlink-generator": {
"name": "@dotfiles/symlink-generator",
"version": "1.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
},
"devDependencies": {
"@dotfiles/registry-database": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/testing-helpers": {
"name": "@dotfiles/testing-helpers",
"version": "1.0.0",
"dependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/core": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/registry": "workspace:*",
"@dotfiles/utils": "workspace:*",
"tslog": "catalog:",
"type-fest": "catalog:",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/tool-config-builder": {
"name": "@dotfiles/tool-config-builder",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer-brew": "workspace:*",
"@dotfiles/installer-cargo": "workspace:*",
"@dotfiles/installer-curl-script": "workspace:*",
"@dotfiles/installer-curl-tar": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/installer-manual": "workspace:*",
"@dotfiles/installer-pkg": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/shell-init-generator": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/unwrap-value": {
"name": "@dotfiles/unwrap-value",
"version": "0.0.0",
"devDependencies": {
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/utils": {
"name": "@dotfiles/utils",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/unwrap-value": "workspace:*",
"semver": "^7.6.3",
},
"devDependencies": {
"@dotfiles/config": "workspace:*",
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@types/semver": "^7.5.8",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/version-checker": {
"name": "@dotfiles/version-checker",
"version": "0.0.0",
"dependencies": {
"@dotfiles/core": "workspace:*",
"@dotfiles/installer": "workspace:*",
"@dotfiles/installer-github": "workspace:*",
"@dotfiles/logger": "workspace:*",
"semver": "^7.7.3",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@types/semver": "^7.5.8",
"@typescript/native-preview": "catalog:typescript",
"typescript": "catalog:typescript",
},
},
"packages/virtual-env": {
"name": "@dotfiles/virtual-env",
"version": "1.0.0",
"dependencies": {
"@dotfiles/file-system": "workspace:*",
"@dotfiles/logger": "workspace:*",
"@dotfiles/utils": "workspace:*",
"zod": "catalog:",
},
"devDependencies": {
"@dotfiles/testing-helpers": "workspace:*",
"@rageltd/bun-test-utils": "catalog:testing",
"@types/bun": "catalog:system",
"@types/node": "catalog:system",
"@typescript/native-preview": "catalog:typescript",
"tslog": "catalog:",
"typescript": "catalog:typescript",
},
},
"test-project-npm": {
"name": "test-project-npm",
"version": "1.0.0",
"devDependencies": {
"@dotfiles/cli": "workspace:*",
},
},
},
"catalog": {
"dax-sh": "^0.44.1",
"tslog": "^4.10.2",
"type-fest": "^5.1.0",
"zod": "^4.1.12",
},
"catalogs": {
"system": {
"@types/bun": "^1.3.5",
"@types/node": "^25.0.0",
"@types/semver": "^7.5.8",
},
"testing": {
"@rageltd/bun-test-utils": "^2.0.0",
},
"typescript": {
"@typescript/native-preview": "7.0.0-dev.20251218.3",
"typescript": "^5.9.3",
},
},
"packages": {
"@adobe/css-tools": ["@adobe/css-tools@4.4.4", "", {}, "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg=="],
"@alexgorbatchev/typescript-ai-policy": ["@alexgorbatchev/typescript-ai-policy@5.0.2", "", { "peerDependencies": { "@typescript/native-preview": "^7.0.0-dev.20260330.1", "oxfmt": "^0.42.0", "oxlint": "^1.57.0", "typescript": "^6" }, "optionalPeers": ["@typescript/native-preview", "typescript"], "bin": { "typescript-ai-policy-fix-semantic": "dist/bin/typescript-ai-policy-fix-semantic.js" } }, "sha512-kT5p2zauas5CeFYll53+8o4gZFOVsMOXkhYkWaffJL9QF37l7hVYrEq/clb15rrvSj96A59je1ovw4fugwG8ig=="],
"@astrojs/compiler": ["@astrojs/compiler@3.0.1", "", {}, "sha512-z97oYbdebO5aoWzuJ/8q5hLK232+17KcLZ7cJ8BCWk6+qNzVxn/gftC0KzMBUTD8WAaBkPpNSQK6PXLnNrZ0CA=="],
"@astrojs/internal-helpers": ["@astrojs/internal-helpers@0.8.0", "", { "dependencies": { "picomatch": "^4.0.3" } }, "sha512-J56GrhEiV+4dmrGLPNOl2pZjpHXAndWVyiVDYGDuw6MWKpBSEMLdFxHzeM/6sqaknw9M+HFfHZAcvi3OfT3D/w=="],
"@astrojs/markdown-remark": ["@astrojs/markdown-remark@7.1.0", "", { "dependencies": { "@astrojs/internal-helpers": "0.8.0", "@astrojs/prism": "4.0.1", "github-slugger": "^2.0.0", "hast-util-from-html": "^2.0.3", "hast-util-to-text": "^4.0.2", "js-yaml": "^4.1.1", "mdast-util-definitions": "^6.0.0", "rehype-raw": "^7.0.0", "rehype-stringify": "^10.0.1", "remark-gfm": "^4.0.1", "remark-parse": "^11.0.0", "remark-rehype": "^11.1.2", "remark-smartypants": "^3.0.2", "retext-smartypants": "^6.2.0", "shiki": "^4.0.0", "smol-toml": "^1.6.0", "unified": "^11.0.5", "unist-util-remove-position": "^5.0.0", "unist-util-visit": "^5.1.0", "unist-util-visit-parents": "^6.0.2", "vfile": "^6.0.3" } }, "sha512-P+HnCsu2js3BoTc8kFmu+E9gOcFeMdPris75g+Zl4sY8+bBRbSQV6xzcBDbZ27eE7yBGEGQoqjpChx+KJYIPYQ=="],
"@astrojs/mdx": ["@astrojs/mdx@5.0.3", "", { "dependencies": { "@astrojs/markdown-remark": "7.1.0", "@mdx-js/mdx": "^3.1.1", "acorn": "^8.16.0", "es-module-lexer": "^2.0.0", "estree-util-visit": "^2.0.0", "hast-util-to-html": "^9.0.5", "piccolore": "^0.1.3", "rehype-raw": "^7.0.0", "remark-gfm": "^4.0.1", "remark-smartypants": "^3.0.2", "source-map": "^0.7.6", "unist-util-visit": "^5.1.0", "vfile": "^6.0.3" }, "peerDependencies": { "astro": "^6.0.0" } }, "sha512-zv/OlM5sZZvyjHqJjR3FjJvoCgbxdqj3t4jO/gSEUNcck3BjdtMgNQw8UgPfAGe4yySdG4vjZ3OC5wUxhu7ckg=="],
"@astrojs/prism": ["@astrojs/prism@4.0.1", "", { "dependencies": { "prismjs": "^1.30.0" } }, "sha512-nksZQVjlferuWzhPsBpQ1JE5XuKAf1id1/9Hj4a9KG4+ofrlzxUUwX4YGQF/SuDiuiGKEnzopGOt38F3AnVWsQ=="],
"@astrojs/sitemap": ["@astrojs/sitemap@3.7.2", "", { "dependencies": { "sitemap": "^9.0.0", "stream-replace-string": "^2.0.0", "zod": "^4.3.6" } }, "sha512-PqkzkcZTb5ICiyIR8VoKbIAP/laNRXi5tw616N1Ckk+40oNB8Can1AzVV56lrbC5GKSZFCyJYUVYqVivMisvpA=="],
"@astrojs/starlight": ["@astrojs/starlight@0.38.3", "", { "dependencies": { "@astrojs/markdown-remark": "^7.0.0", "@astrojs/mdx": "^5.0.0", "@astrojs/sitemap": "^3.7.1", "@pagefind/default-ui": "^1.3.0", "@types/hast": "^3.0.4", "@types/js-yaml": "^4.0.9", "@types/mdast": "^4.0.4", "astro-expressive-code": "^0.41.6", "bcp-47": "^2.1.0", "hast-util-from-html": "^2.0.1", "hast-util-select": "^6.0.2", "hast-util-to-string": "^3.0.0", "hastscript": "^9.0.0", "i18next": "^23.11.5", "js-yaml": "^4.1.0", "klona": "^2.0.6", "magic-string": "^0.30.17", "mdast-util-directive": "^3.0.0", "mdast-util-to-markdown": "^2.1.0", "mdast-util-to-string": "^4.0.0", "pagefind": "^1.3.0", "rehype": "^13.0.1", "rehype-format": "^5.0.0", "remark-directive": "^3.0.0", "ultrahtml": "^1.6.0", "unified": "^11.0.5", "unist-util-visit": "^5.0.0", "vfile": "^6.0.2" }, "peerDependencies": { "astro": "^6.0.0" } }, "sha512-kDlJPlUDdQFWYmyFM2yUPo66yws7v067AEK+/rQjjoVyqehL3DabuOJuy6UJFFTFyGbHxYcBms/ITEgdW7tphw=="],
"@astrojs/telemetry": ["@astrojs/telemetry@3.3.0", "", { "dependencies": { "ci-info": "^4.2.0", "debug": "^4.4.0", "dlv": "^1.1.3", "dset": "^3.1.4", "is-docker": "^3.0.0", "is-wsl": "^3.1.0", "which-pm-runs": "^1.1.0" } }, "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ=="],
"@babel/code-frame": ["@babel/code-frame@7.29.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="],
"@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="],
"@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="],
"@babel/parser": ["@babel/parser@7.29.2", "", { "dependencies": { "@babel/types": "^7.29.0" }, "bin": "./bin/babel-parser.js" }, "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA=="],
"@babel/runtime": ["@babel/runtime@7.28.6", "", {}, "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA=="],
"@babel/types": ["@babel/types@7.29.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" } }, "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A=="],
"@capsizecss/unpack": ["@capsizecss/unpack@4.0.0", "", { "dependencies": { "fontkitten": "^1.0.0" } }, "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA=="],
"@clack/core": ["@clack/core@1.2.0", "", { "dependencies": { "fast-wrap-ansi": "^0.1.3", "sisteransi": "^1.0.5" } }, "sha512-qfxof/3T3t9DPU/Rj3OmcFyZInceqj/NVtO9rwIuJqCUgh32gwPjpFQQp/ben07qKlhpwq7GzfWpST4qdJ5Drg=="],
"@clack/prompts": ["@clack/prompts@1.2.0", "", { "dependencies": { "@clack/core": "1.2.0", "fast-string-width": "^1.1.0", "fast-wrap-ansi": "^0.1.3", "sisteransi": "^1.0.5" } }, "sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w=="],
"@commander-js/extra-typings": ["@commander-js/extra-typings@14.0.0", "", { "peerDependencies": { "commander": "~14.0.0" } }, "sha512-hIn0ncNaJRLkZrxBIp5AsW/eXEHNKYQBh0aPdoUqNgD+Io3NIykQqpKFyKcuasZhicGaEZJX/JBSIkZ4e5x8Dg=="],
"@ctrl/tinycolor": ["@ctrl/tinycolor@4.2.0", "", {}, "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A=="],
"@deno/shim-deno": ["@deno/shim-deno@0.19.2", "", { "dependencies": { "@deno/shim-deno-test": "^0.5.0", "which": "^4.0.0" } }, "sha512-q3VTHl44ad8T2Tw2SpeAvghdGOjlnLPDNO2cpOxwMrBE/PVas6geWpbpIgrM+czOCH0yejp0yi8OaTuB+NU40Q=="],
"@deno/shim-deno-test": ["@deno/shim-deno-test@0.5.0", "", {}, "sha512-4nMhecpGlPi0cSzT67L+Tm+GOJqvuk8gqHBziqcUQOarnuIax1z96/gJHCSIz2Z0zhxE6Rzwb3IZXPtFh51j+w=="],
"@dotfiles/arch": ["@dotfiles/arch@workspace:packages/arch"],
"@dotfiles/archive-extractor": ["@dotfiles/archive-extractor@workspace:packages/archive-extractor"],
"@dotfiles/build": ["@dotfiles/build@workspace:packages/build"],
"@dotfiles/cli": ["@dotfiles/cli@workspace:packages/cli"],
"@dotfiles/config": ["@dotfiles/config@workspace:packages/config"],
"@dotfiles/core": ["@dotfiles/core@workspace:packages/core"],
"@dotfiles/dashboard": ["@dotfiles/dashboard@workspace:packages/dashboard"],
"@dotfiles/docs": ["@dotfiles/docs@workspace:packages/docs"],
"@dotfiles/downloader": ["@dotfiles/downloader@workspace:packages/downloader"],
"@dotfiles/e2e-test": ["@dotfiles/e2e-test@workspace:packages/e2e-test"],
"@dotfiles/features": ["@dotfiles/features@workspace:packages/features"],
"@dotfiles/file-system": ["@dotfiles/file-system@workspace:packages/file-system"],
"@dotfiles/generator-orchestrator": ["@dotfiles/generator-orchestrator@workspace:packages/generator-orchestrator"],