forked from MrLesk/Backlog.md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbun.nix
More file actions
4000 lines (4000 loc) · 188 KB
/
bun.nix
File metadata and controls
4000 lines (4000 loc) · 188 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
# Set of Bun packages to install
{
"@antfu/install-pkg" = {
out_path = "@antfu/install-pkg";
name = "@antfu/install-pkg@1.1.0";
url = "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz";
hash = "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==";
};
"@antfu/utils" = {
out_path = "@antfu/utils";
name = "@antfu/utils@9.3.0";
url = "https://registry.npmjs.org/@antfu/utils/-/utils-9.3.0.tgz";
hash = "sha512-9hFT4RauhcUzqOE4f1+frMKLZrgNog5b06I7VmZQV1BkvwvqrbC8EBZf3L1eEL2AKb6rNKjER0sEvJiSP1FXEA==";
};
"@babel/runtime" = {
out_path = "@babel/runtime";
name = "@babel/runtime@7.28.4";
url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz";
hash = "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==";
};
"@biomejs/biome" = {
out_path = "@biomejs/biome";
binaries = {
"biome" = "../@biomejs/biome/bin/biome";
};
name = "@biomejs/biome@2.2.4";
url = "https://registry.npmjs.org/@biomejs/biome/-/biome-2.2.4.tgz";
hash = "sha512-TBHU5bUy/Ok6m8c0y3pZiuO/BZoY/OcGxoLlrfQof5s8ISVwbVBdFINPQZyFfKwil8XibYWb7JMwnT8wT4WVPg==";
};
"@biomejs/cli-darwin-arm64" = {
out_path = "@biomejs/cli-darwin-arm64";
name = "@biomejs/cli-darwin-arm64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.2.4.tgz";
hash = "sha512-RJe2uiyaloN4hne4d2+qVj3d3gFJFbmrr5PYtkkjei1O9c+BjGXgpUPVbi8Pl8syumhzJjFsSIYkcLt2VlVLMA==";
};
"@biomejs/cli-darwin-x64" = {
out_path = "@biomejs/cli-darwin-x64";
name = "@biomejs/cli-darwin-x64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.2.4.tgz";
hash = "sha512-cFsdB4ePanVWfTnPVaUX+yr8qV8ifxjBKMkZwN7gKb20qXPxd/PmwqUH8mY5wnM9+U0QwM76CxFyBRJhC9tQwg==";
};
"@biomejs/cli-linux-arm64" = {
out_path = "@biomejs/cli-linux-arm64";
name = "@biomejs/cli-linux-arm64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.2.4.tgz";
hash = "sha512-M/Iz48p4NAzMXOuH+tsn5BvG/Jb07KOMTdSVwJpicmhN309BeEyRyQX+n1XDF0JVSlu28+hiTQ2L4rZPvu7nMw==";
};
"@biomejs/cli-linux-arm64-musl" = {
out_path = "@biomejs/cli-linux-arm64-musl";
name = "@biomejs/cli-linux-arm64-musl@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.2.4.tgz";
hash = "sha512-7TNPkMQEWfjvJDaZRSkDCPT/2r5ESFPKx+TEev+I2BXDGIjfCZk2+b88FOhnJNHtksbOZv8ZWnxrA5gyTYhSsQ==";
};
"@biomejs/cli-linux-x64" = {
out_path = "@biomejs/cli-linux-x64";
name = "@biomejs/cli-linux-x64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.2.4.tgz";
hash = "sha512-orr3nnf2Dpb2ssl6aihQtvcKtLySLta4E2UcXdp7+RTa7mfJjBgIsbS0B9GC8gVu0hjOu021aU8b3/I1tn+pVQ==";
};
"@biomejs/cli-linux-x64-musl" = {
out_path = "@biomejs/cli-linux-x64-musl";
name = "@biomejs/cli-linux-x64-musl@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.2.4.tgz";
hash = "sha512-m41nFDS0ksXK2gwXL6W6yZTYPMH0LughqbsxInSKetoH6morVj43szqKx79Iudkp8WRT5SxSh7qVb8KCUiewGg==";
};
"@biomejs/cli-win32-arm64" = {
out_path = "@biomejs/cli-win32-arm64";
name = "@biomejs/cli-win32-arm64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.2.4.tgz";
hash = "sha512-NXnfTeKHDFUWfxAefa57DiGmu9VyKi0cDqFpdI+1hJWQjGJhJutHPX0b5m+eXvTKOaf+brU+P0JrQAZMb5yYaQ==";
};
"@biomejs/cli-win32-x64" = {
out_path = "@biomejs/cli-win32-x64";
name = "@biomejs/cli-win32-x64@2.2.4";
url = "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.2.4.tgz";
hash = "sha512-3Y4V4zVRarVh/B/eSHczR4LYoSVyv3Dfuvm3cWs5w/HScccS0+Wt/lHOcDTRYeHjQmMYVC3rIRWqyN2EI52+zg==";
};
"@braintree/sanitize-url" = {
out_path = "@braintree/sanitize-url";
name = "@braintree/sanitize-url@7.1.1";
url = "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.1.tgz";
hash = "sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==";
};
"@chevrotain/cst-dts-gen" = {
out_path = "@chevrotain/cst-dts-gen";
name = "@chevrotain/cst-dts-gen@11.0.3";
url = "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz";
hash = "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==";
};
"@chevrotain/gast" = {
out_path = "@chevrotain/gast";
name = "@chevrotain/gast@11.0.3";
url = "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz";
hash = "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==";
};
"@chevrotain/regexp-to-ast" = {
out_path = "@chevrotain/regexp-to-ast";
name = "@chevrotain/regexp-to-ast@11.0.3";
url = "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz";
hash = "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==";
};
"@chevrotain/types" = {
out_path = "@chevrotain/types";
name = "@chevrotain/types@11.0.3";
url = "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz";
hash = "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==";
};
"@chevrotain/utils" = {
out_path = "@chevrotain/utils";
name = "@chevrotain/utils@11.0.3";
url = "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz";
hash = "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==";
};
"@floating-ui/core" = {
out_path = "@floating-ui/core";
name = "@floating-ui/core@1.7.3";
url = "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz";
hash = "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==";
};
"@floating-ui/dom" = {
out_path = "@floating-ui/dom";
name = "@floating-ui/dom@1.7.4";
url = "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz";
hash = "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==";
};
"@floating-ui/utils" = {
out_path = "@floating-ui/utils";
name = "@floating-ui/utils@0.2.10";
url = "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz";
hash = "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==";
};
"@iconify/types" = {
out_path = "@iconify/types";
name = "@iconify/types@2.0.0";
url = "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz";
hash = "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==";
};
"@iconify/utils" = {
out_path = "@iconify/utils";
name = "@iconify/utils@3.0.2";
url = "https://registry.npmjs.org/@iconify/utils/-/utils-3.0.2.tgz";
hash = "sha512-EfJS0rLfVuRuJRn4psJHtK2A9TqVnkxPpHY6lYHiB9+8eSuudsxbwMiavocG45ujOo6FJ+CIRlRnlOGinzkaGQ==";
};
"@isaacs/fs-minipass" = {
out_path = "@isaacs/fs-minipass";
name = "@isaacs/fs-minipass@4.0.1";
url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz";
hash = "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==";
};
"@jimp/core" = {
out_path = "@jimp/core";
name = "@jimp/core@1.6.0";
url = "https://registry.npmjs.org/@jimp/core/-/core-1.6.0.tgz";
hash = "sha512-EQQlKU3s9QfdJqiSrZWNTxBs3rKXgO2W+GxNXDtwchF3a4IqxDheFX1ti+Env9hdJXDiYLp2jTRjlxhPthsk8w==";
};
"@jimp/diff" = {
out_path = "@jimp/diff";
name = "@jimp/diff@1.6.0";
url = "https://registry.npmjs.org/@jimp/diff/-/diff-1.6.0.tgz";
hash = "sha512-+yUAQ5gvRC5D1WHYxjBHZI7JBRusGGSLf8AmPRPCenTzh4PA+wZ1xv2+cYqQwTfQHU5tXYOhA0xDytfHUf1Zyw==";
};
"@jimp/file-ops" = {
out_path = "@jimp/file-ops";
name = "@jimp/file-ops@1.6.0";
url = "https://registry.npmjs.org/@jimp/file-ops/-/file-ops-1.6.0.tgz";
hash = "sha512-Dx/bVDmgnRe1AlniRpCKrGRm5YvGmUwbDzt+MAkgmLGf+jvBT75hmMEZ003n9HQI/aPnm/YKnXjg/hOpzNCpHQ==";
};
"@jimp/js-bmp" = {
out_path = "@jimp/js-bmp";
name = "@jimp/js-bmp@1.6.0";
url = "https://registry.npmjs.org/@jimp/js-bmp/-/js-bmp-1.6.0.tgz";
hash = "sha512-FU6Q5PC/e3yzLyBDXupR3SnL3htU7S3KEs4e6rjDP6gNEOXRFsWs6YD3hXuXd50jd8ummy+q2WSwuGkr8wi+Gw==";
};
"@jimp/js-gif" = {
out_path = "@jimp/js-gif";
name = "@jimp/js-gif@1.6.0";
url = "https://registry.npmjs.org/@jimp/js-gif/-/js-gif-1.6.0.tgz";
hash = "sha512-N9CZPHOrJTsAUoWkWZstLPpwT5AwJ0wge+47+ix3++SdSL/H2QzyMqxbcDYNFe4MoI5MIhATfb0/dl/wmX221g==";
};
"@jimp/js-jpeg" = {
out_path = "@jimp/js-jpeg";
name = "@jimp/js-jpeg@1.6.0";
url = "https://registry.npmjs.org/@jimp/js-jpeg/-/js-jpeg-1.6.0.tgz";
hash = "sha512-6vgFDqeusblf5Pok6B2DUiMXplH8RhIKAryj1yn+007SIAQ0khM1Uptxmpku/0MfbClx2r7pnJv9gWpAEJdMVA==";
};
"@jimp/js-png" = {
out_path = "@jimp/js-png";
name = "@jimp/js-png@1.6.0";
url = "https://registry.npmjs.org/@jimp/js-png/-/js-png-1.6.0.tgz";
hash = "sha512-AbQHScy3hDDgMRNfG0tPjL88AV6qKAILGReIa3ATpW5QFjBKpisvUaOqhzJ7Reic1oawx3Riyv152gaPfqsBVg==";
};
"@jimp/js-tiff" = {
out_path = "@jimp/js-tiff";
name = "@jimp/js-tiff@1.6.0";
url = "https://registry.npmjs.org/@jimp/js-tiff/-/js-tiff-1.6.0.tgz";
hash = "sha512-zhReR8/7KO+adijj3h0ZQUOiun3mXUv79zYEAKvE0O+rP7EhgtKvWJOZfRzdZSNv0Pu1rKtgM72qgtwe2tFvyw==";
};
"@jimp/plugin-blit" = {
out_path = "@jimp/plugin-blit";
name = "@jimp/plugin-blit@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-1.6.0.tgz";
hash = "sha512-M+uRWl1csi7qilnSK8uxK4RJMSuVeBiO1AY0+7APnfUbQNZm6hCe0CCFv1Iyw1D/Dhb8ph8fQgm5mwM0eSxgVA==";
};
"@jimp/plugin-blur" = {
out_path = "@jimp/plugin-blur";
name = "@jimp/plugin-blur@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-1.6.0.tgz";
hash = "sha512-zrM7iic1OTwUCb0g/rN5y+UnmdEsT3IfuCXCJJNs8SZzP0MkZ1eTvuwK9ZidCuMo4+J3xkzCidRwYXB5CyGZTw==";
};
"@jimp/plugin-circle" = {
out_path = "@jimp/plugin-circle";
name = "@jimp/plugin-circle@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-1.6.0.tgz";
hash = "sha512-xt1Gp+LtdMKAXfDp3HNaG30SPZW6AQ7dtAtTnoRKorRi+5yCJjKqXRgkewS5bvj8DEh87Ko1ydJfzqS3P2tdWw==";
};
"@jimp/plugin-color" = {
out_path = "@jimp/plugin-color";
name = "@jimp/plugin-color@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-1.6.0.tgz";
hash = "sha512-J5q8IVCpkBsxIXM+45XOXTrsyfblyMZg3a9eAo0P7VPH4+CrvyNQwaYatbAIamSIN1YzxmO3DkIZXzRjFSz1SA==";
};
"@jimp/plugin-contain" = {
out_path = "@jimp/plugin-contain";
name = "@jimp/plugin-contain@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-1.6.0.tgz";
hash = "sha512-oN/n+Vdq/Qg9bB4yOBOxtY9IPAtEfES8J1n9Ddx+XhGBYT1/QTU/JYkGaAkIGoPnyYvmLEDqMz2SGihqlpqfzQ==";
};
"@jimp/plugin-cover" = {
out_path = "@jimp/plugin-cover";
name = "@jimp/plugin-cover@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-1.6.0.tgz";
hash = "sha512-Iow0h6yqSC269YUJ8HC3Q/MpCi2V55sMlbkkTTx4zPvd8mWZlC0ykrNDeAy9IJegrQ7v5E99rJwmQu25lygKLA==";
};
"@jimp/plugin-crop" = {
out_path = "@jimp/plugin-crop";
name = "@jimp/plugin-crop@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-1.6.0.tgz";
hash = "sha512-KqZkEhvs+21USdySCUDI+GFa393eDIzbi1smBqkUPTE+pRwSWMAf01D5OC3ZWB+xZsNla93BDS9iCkLHA8wang==";
};
"@jimp/plugin-displace" = {
out_path = "@jimp/plugin-displace";
name = "@jimp/plugin-displace@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-1.6.0.tgz";
hash = "sha512-4Y10X9qwr5F+Bo5ME356XSACEF55485j5nGdiyJ9hYzjQP9nGgxNJaZ4SAOqpd+k5sFaIeD7SQ0Occ26uIng5Q==";
};
"@jimp/plugin-dither" = {
out_path = "@jimp/plugin-dither";
name = "@jimp/plugin-dither@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-1.6.0.tgz";
hash = "sha512-600d1RxY0pKwgyU0tgMahLNKsqEcxGdbgXadCiVCoGd6V6glyCvkNrnnwC0n5aJ56Htkj88PToSdF88tNVZEEQ==";
};
"@jimp/plugin-fisheye" = {
out_path = "@jimp/plugin-fisheye";
name = "@jimp/plugin-fisheye@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-1.6.0.tgz";
hash = "sha512-E5QHKWSCBFtpgZarlmN3Q6+rTQxjirFqo44ohoTjzYVrDI6B6beXNnPIThJgPr0Y9GwfzgyarKvQuQuqCnnfbA==";
};
"@jimp/plugin-flip" = {
out_path = "@jimp/plugin-flip";
name = "@jimp/plugin-flip@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-1.6.0.tgz";
hash = "sha512-/+rJVDuBIVOgwoyVkBjUFHtP+wmW0r+r5OQ2GpatQofToPVbJw1DdYWXlwviSx7hvixTWLKVgRWQ5Dw862emDg==";
};
"@jimp/plugin-hash" = {
out_path = "@jimp/plugin-hash";
name = "@jimp/plugin-hash@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-hash/-/plugin-hash-1.6.0.tgz";
hash = "sha512-wWzl0kTpDJgYVbZdajTf+4NBSKvmI3bRI8q6EH9CVeIHps9VWVsUvEyb7rpbcwVLWYuzDtP2R0lTT6WeBNQH9Q==";
};
"@jimp/plugin-mask" = {
out_path = "@jimp/plugin-mask";
name = "@jimp/plugin-mask@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-1.6.0.tgz";
hash = "sha512-Cwy7ExSJMZszvkad8NV8o/Z92X2kFUFM8mcDAhNVxU0Q6tA0op2UKRJY51eoK8r6eds/qak3FQkXakvNabdLnA==";
};
"@jimp/plugin-print" = {
out_path = "@jimp/plugin-print";
name = "@jimp/plugin-print@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-1.6.0.tgz";
hash = "sha512-zarTIJi8fjoGMSI/M3Xh5yY9T65p03XJmPsuNet19K/Q7mwRU6EV2pfj+28++2PV2NJ+htDF5uecAlnGyxFN2A==";
};
"@jimp/plugin-quantize" = {
out_path = "@jimp/plugin-quantize";
name = "@jimp/plugin-quantize@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-quantize/-/plugin-quantize-1.6.0.tgz";
hash = "sha512-EmzZ/s9StYQwbpG6rUGBCisc3f64JIhSH+ncTJd+iFGtGo0YvSeMdAd+zqgiHpfZoOL54dNavZNjF4otK+mvlg==";
};
"@jimp/plugin-resize" = {
out_path = "@jimp/plugin-resize";
name = "@jimp/plugin-resize@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-1.6.0.tgz";
hash = "sha512-uSUD1mqXN9i1SGSz5ov3keRZ7S9L32/mAQG08wUwZiEi5FpbV0K8A8l1zkazAIZi9IJzLlTauRNU41Mi8IF9fA==";
};
"@jimp/plugin-rotate" = {
out_path = "@jimp/plugin-rotate";
name = "@jimp/plugin-rotate@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-1.6.0.tgz";
hash = "sha512-JagdjBLnUZGSG4xjCLkIpQOZZ3Mjbg8aGCCi4G69qR+OjNpOeGI7N2EQlfK/WE8BEHOW5vdjSyglNqcYbQBWRw==";
};
"@jimp/plugin-threshold" = {
out_path = "@jimp/plugin-threshold";
name = "@jimp/plugin-threshold@1.6.0";
url = "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-1.6.0.tgz";
hash = "sha512-M59m5dzLoHOVWdM41O8z9SyySzcDn43xHseOH0HavjsfQsT56GGCC4QzU1banJidbUrePhzoEdS42uFE8Fei8w==";
};
"@jimp/types" = {
out_path = "@jimp/types";
name = "@jimp/types@1.6.0";
url = "https://registry.npmjs.org/@jimp/types/-/types-1.6.0.tgz";
hash = "sha512-7UfRsiKo5GZTAATxm2qQ7jqmUXP0DxTArztllTcYdyw6Xi5oT4RaoXynVtCD4UyLK5gJgkZJcwonoijrhYFKfg==";
};
"@jimp/utils" = {
out_path = "@jimp/utils";
name = "@jimp/utils@1.6.0";
url = "https://registry.npmjs.org/@jimp/utils/-/utils-1.6.0.tgz";
hash = "sha512-gqFTGEosKbOkYF/WFj26jMHOI5OH2jeP1MmC/zbK6BF6VJBf8rIC5898dPfSzZEbSA0wbbV5slbntWVc5PKLFA==";
};
"@jridgewell/gen-mapping" = {
out_path = "@jridgewell/gen-mapping";
name = "@jridgewell/gen-mapping@0.3.13";
url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz";
hash = "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==";
};
"@jridgewell/remapping" = {
out_path = "@jridgewell/remapping";
name = "@jridgewell/remapping@2.3.5";
url = "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz";
hash = "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==";
};
"@jridgewell/resolve-uri" = {
out_path = "@jridgewell/resolve-uri";
name = "@jridgewell/resolve-uri@3.1.2";
url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz";
hash = "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==";
};
"@jridgewell/sourcemap-codec" = {
out_path = "@jridgewell/sourcemap-codec";
name = "@jridgewell/sourcemap-codec@1.5.5";
url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz";
hash = "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==";
};
"@jridgewell/trace-mapping" = {
out_path = "@jridgewell/trace-mapping";
name = "@jridgewell/trace-mapping@0.3.31";
url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz";
hash = "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==";
};
"@mermaid-js/parser" = {
out_path = "@mermaid-js/parser";
name = "@mermaid-js/parser@0.6.3";
url = "https://registry.npmjs.org/@mermaid-js/parser/-/parser-0.6.3.tgz";
hash = "sha512-lnjOhe7zyHjc+If7yT4zoedx2vo4sHaTmtkl1+or8BRTnCtDmcTpAjpzDSfCZrshM5bCoz0GyidzadJAH1xobA==";
};
"@modelcontextprotocol/sdk" = {
out_path = "@modelcontextprotocol/sdk";
name = "@modelcontextprotocol/sdk@1.18.2";
url = "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.18.2.tgz";
hash = "sha512-beedclIvFcCnPrYgHsylqiYJVJ/CI47Vyc4tY8no1/Li/O8U4BTlJfy6ZwxkYwx+Mx10nrgwSVrA7VBbhh4slg==";
};
"@parcel/watcher" = {
out_path = "@parcel/watcher";
name = "@parcel/watcher@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz";
hash = "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==";
};
"@parcel/watcher-android-arm64" = {
out_path = "@parcel/watcher-android-arm64";
name = "@parcel/watcher-android-arm64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz";
hash = "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==";
};
"@parcel/watcher-darwin-arm64" = {
out_path = "@parcel/watcher-darwin-arm64";
name = "@parcel/watcher-darwin-arm64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz";
hash = "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==";
};
"@parcel/watcher-darwin-x64" = {
out_path = "@parcel/watcher-darwin-x64";
name = "@parcel/watcher-darwin-x64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz";
hash = "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==";
};
"@parcel/watcher-freebsd-x64" = {
out_path = "@parcel/watcher-freebsd-x64";
name = "@parcel/watcher-freebsd-x64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz";
hash = "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==";
};
"@parcel/watcher-linux-arm-glibc" = {
out_path = "@parcel/watcher-linux-arm-glibc";
name = "@parcel/watcher-linux-arm-glibc@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz";
hash = "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==";
};
"@parcel/watcher-linux-arm-musl" = {
out_path = "@parcel/watcher-linux-arm-musl";
name = "@parcel/watcher-linux-arm-musl@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz";
hash = "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==";
};
"@parcel/watcher-linux-arm64-glibc" = {
out_path = "@parcel/watcher-linux-arm64-glibc";
name = "@parcel/watcher-linux-arm64-glibc@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz";
hash = "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==";
};
"@parcel/watcher-linux-arm64-musl" = {
out_path = "@parcel/watcher-linux-arm64-musl";
name = "@parcel/watcher-linux-arm64-musl@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz";
hash = "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==";
};
"@parcel/watcher-linux-x64-glibc" = {
out_path = "@parcel/watcher-linux-x64-glibc";
name = "@parcel/watcher-linux-x64-glibc@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz";
hash = "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==";
};
"@parcel/watcher-linux-x64-musl" = {
out_path = "@parcel/watcher-linux-x64-musl";
name = "@parcel/watcher-linux-x64-musl@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz";
hash = "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==";
};
"@parcel/watcher-win32-arm64" = {
out_path = "@parcel/watcher-win32-arm64";
name = "@parcel/watcher-win32-arm64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz";
hash = "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==";
};
"@parcel/watcher-win32-ia32" = {
out_path = "@parcel/watcher-win32-ia32";
name = "@parcel/watcher-win32-ia32@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz";
hash = "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==";
};
"@parcel/watcher-win32-x64" = {
out_path = "@parcel/watcher-win32-x64";
name = "@parcel/watcher-win32-x64@2.5.1";
url = "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz";
hash = "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==";
};
"@tailwindcss/cli" = {
out_path = "@tailwindcss/cli";
binaries = {
"tailwindcss" = "../@tailwindcss/cli/dist/index.mjs";
};
name = "@tailwindcss/cli@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.13.tgz";
hash = "sha512-KEu/iL4CYBzGza/2yZBLXqjCCZB/eRWkRLP8Vg2kkEWk4usC8HLGJW0QAhLS7U5DsAWumsisxgabuppE6NinLw==";
};
"@tailwindcss/node" = {
out_path = "@tailwindcss/node";
name = "@tailwindcss/node@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.13.tgz";
hash = "sha512-eq3ouolC1oEFOAvOMOBAmfCIqZBJuvWvvYWh5h5iOYfe1HFC6+GZ6EIL0JdM3/niGRJmnrOc+8gl9/HGUaaptw==";
};
"@tailwindcss/oxide" = {
out_path = "@tailwindcss/oxide";
name = "@tailwindcss/oxide@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.13.tgz";
hash = "sha512-CPgsM1IpGRa880sMbYmG1s4xhAy3xEt1QULgTJGQmZUeNgXFR7s1YxYygmJyBGtou4SyEosGAGEeYqY7R53bIA==";
};
"@tailwindcss/oxide-android-arm64" = {
out_path = "@tailwindcss/oxide-android-arm64";
name = "@tailwindcss/oxide-android-arm64@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.13.tgz";
hash = "sha512-BrpTrVYyejbgGo57yc8ieE+D6VT9GOgnNdmh5Sac6+t0m+v+sKQevpFVpwX3pBrM2qKrQwJ0c5eDbtjouY/+ew==";
};
"@tailwindcss/oxide-darwin-arm64" = {
out_path = "@tailwindcss/oxide-darwin-arm64";
name = "@tailwindcss/oxide-darwin-arm64@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.13.tgz";
hash = "sha512-YP+Jksc4U0KHcu76UhRDHq9bx4qtBftp9ShK/7UGfq0wpaP96YVnnjFnj3ZFrUAjc5iECzODl/Ts0AN7ZPOANQ==";
};
"@tailwindcss/oxide-darwin-x64" = {
out_path = "@tailwindcss/oxide-darwin-x64";
name = "@tailwindcss/oxide-darwin-x64@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.13.tgz";
hash = "sha512-aAJ3bbwrn/PQHDxCto9sxwQfT30PzyYJFG0u/BWZGeVXi5Hx6uuUOQEI2Fa43qvmUjTRQNZnGqe9t0Zntexeuw==";
};
"@tailwindcss/oxide-freebsd-x64" = {
out_path = "@tailwindcss/oxide-freebsd-x64";
name = "@tailwindcss/oxide-freebsd-x64@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.13.tgz";
hash = "sha512-Wt8KvASHwSXhKE/dJLCCWcTSVmBj3xhVhp/aF3RpAhGeZ3sVo7+NTfgiN8Vey/Fi8prRClDs6/f0KXPDTZE6nQ==";
};
"@tailwindcss/oxide-linux-arm-gnueabihf" = {
out_path = "@tailwindcss/oxide-linux-arm-gnueabihf";
name = "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.13.tgz";
hash = "sha512-mbVbcAsW3Gkm2MGwA93eLtWrwajz91aXZCNSkGTx/R5eb6KpKD5q8Ueckkh9YNboU8RH7jiv+ol/I7ZyQ9H7Bw==";
};
"@tailwindcss/oxide-linux-arm64-gnu" = {
out_path = "@tailwindcss/oxide-linux-arm64-gnu";
name = "@tailwindcss/oxide-linux-arm64-gnu@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.13.tgz";
hash = "sha512-wdtfkmpXiwej/yoAkrCP2DNzRXCALq9NVLgLELgLim1QpSfhQM5+ZxQQF8fkOiEpuNoKLp4nKZ6RC4kmeFH0HQ==";
};
"@tailwindcss/oxide-linux-arm64-musl" = {
out_path = "@tailwindcss/oxide-linux-arm64-musl";
name = "@tailwindcss/oxide-linux-arm64-musl@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.13.tgz";
hash = "sha512-hZQrmtLdhyqzXHB7mkXfq0IYbxegaqTmfa1p9MBj72WPoDD3oNOh1Lnxf6xZLY9C3OV6qiCYkO1i/LrzEdW2mg==";
};
"@tailwindcss/oxide-linux-x64-gnu" = {
out_path = "@tailwindcss/oxide-linux-x64-gnu";
name = "@tailwindcss/oxide-linux-x64-gnu@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.13.tgz";
hash = "sha512-uaZTYWxSXyMWDJZNY1Ul7XkJTCBRFZ5Fo6wtjrgBKzZLoJNrG+WderJwAjPzuNZOnmdrVg260DKwXCFtJ/hWRQ==";
};
"@tailwindcss/oxide-linux-x64-musl" = {
out_path = "@tailwindcss/oxide-linux-x64-musl";
name = "@tailwindcss/oxide-linux-x64-musl@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.13.tgz";
hash = "sha512-oXiPj5mi4Hdn50v5RdnuuIms0PVPI/EG4fxAfFiIKQh5TgQgX7oSuDWntHW7WNIi/yVLAiS+CRGW4RkoGSSgVQ==";
};
"@tailwindcss/oxide-wasm32-wasi" = {
out_path = "@tailwindcss/oxide-wasm32-wasi";
name = "@tailwindcss/oxide-wasm32-wasi@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.13.tgz";
hash = "sha512-+LC2nNtPovtrDwBc/nqnIKYh/W2+R69FA0hgoeOn64BdCX522u19ryLh3Vf3F8W49XBcMIxSe665kwy21FkhvA==";
};
"@tailwindcss/oxide-wasm32-wasi/@emnapi/core" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/node_modules/core";
name = "@emnapi/core@1.5.0";
url = "https://registry.npmjs.org/@emnapi/core/-/core-1.5.0.tgz";
hash = "sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==";
};
"@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/node_modules/runtime";
name = "@emnapi/runtime@1.5.0";
url = "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.5.0.tgz";
hash = "sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==";
};
"@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/node_modules/wasi-threads";
name = "@emnapi/wasi-threads@1.1.0";
url = "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz";
hash = "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==";
};
"@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/node_modules/wasm-runtime";
name = "@napi-rs/wasm-runtime@0.2.12";
url = "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz";
hash = "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==";
};
"@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/node_modules/wasm-util";
name = "@tybys/wasm-util@0.10.1";
url = "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz";
hash = "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==";
};
"@tailwindcss/oxide-wasm32-wasi/tslib" = {
out_path = "@tailwindcss/oxide-wasm32-wasi/node_modules/tslib";
name = "tslib@2.8.1";
url = "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz";
hash = "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==";
};
"@tailwindcss/oxide-win32-arm64-msvc" = {
out_path = "@tailwindcss/oxide-win32-arm64-msvc";
name = "@tailwindcss/oxide-win32-arm64-msvc@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.13.tgz";
hash = "sha512-dziTNeQXtoQ2KBXmrjCxsuPk3F3CQ/yb7ZNZNA+UkNTeiTGgfeh+gH5Pi7mRncVgcPD2xgHvkFCh/MhZWSgyQg==";
};
"@tailwindcss/oxide-win32-x64-msvc" = {
out_path = "@tailwindcss/oxide-win32-x64-msvc";
name = "@tailwindcss/oxide-win32-x64-msvc@4.1.13";
url = "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.13.tgz";
hash = "sha512-3+LKesjXydTkHk5zXX01b5KMzLV1xl2mcktBJkje7rhFUpUlYJy7IMOLqjIRQncLTa1WZZiFY/foAeB5nmaiTw==";
};
"@tailwindcss/oxide/detect-libc" = {
out_path = "@tailwindcss/oxide/node_modules/detect-libc";
name = "detect-libc@2.1.1";
url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.1.tgz";
hash = "sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==";
};
"@tokenizer/token" = {
out_path = "@tokenizer/token";
name = "@tokenizer/token@0.3.0";
url = "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz";
hash = "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==";
};
"@tootallnate/once" = {
out_path = "@tootallnate/once";
name = "@tootallnate/once@2.0.0";
url = "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz";
hash = "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==";
};
"@types/bun" = {
out_path = "@types/bun";
name = "@types/bun@1.2.22";
url = "https://registry.npmjs.org/@types/bun/-/bun-1.2.22.tgz";
hash = "sha512-5A/KrKos2ZcN0c6ljRSOa1fYIyCKhZfIVYeuyb4snnvomnpFqC0tTsEkdqNxbAgExV384OETQ//WAjl3XbYqQA==";
};
"@types/d3" = {
out_path = "@types/d3";
name = "@types/d3@7.4.3";
url = "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz";
hash = "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==";
};
"@types/d3-array" = {
out_path = "@types/d3-array";
name = "@types/d3-array@3.2.2";
url = "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz";
hash = "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==";
};
"@types/d3-axis" = {
out_path = "@types/d3-axis";
name = "@types/d3-axis@3.0.6";
url = "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz";
hash = "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==";
};
"@types/d3-brush" = {
out_path = "@types/d3-brush";
name = "@types/d3-brush@3.0.6";
url = "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz";
hash = "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==";
};
"@types/d3-chord" = {
out_path = "@types/d3-chord";
name = "@types/d3-chord@3.0.6";
url = "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz";
hash = "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==";
};
"@types/d3-color" = {
out_path = "@types/d3-color";
name = "@types/d3-color@3.1.3";
url = "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz";
hash = "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==";
};
"@types/d3-contour" = {
out_path = "@types/d3-contour";
name = "@types/d3-contour@3.0.6";
url = "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz";
hash = "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==";
};
"@types/d3-delaunay" = {
out_path = "@types/d3-delaunay";
name = "@types/d3-delaunay@6.0.4";
url = "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz";
hash = "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==";
};
"@types/d3-dispatch" = {
out_path = "@types/d3-dispatch";
name = "@types/d3-dispatch@3.0.7";
url = "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz";
hash = "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==";
};
"@types/d3-drag" = {
out_path = "@types/d3-drag";
name = "@types/d3-drag@3.0.7";
url = "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz";
hash = "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==";
};
"@types/d3-dsv" = {
out_path = "@types/d3-dsv";
name = "@types/d3-dsv@3.0.7";
url = "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz";
hash = "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==";
};
"@types/d3-ease" = {
out_path = "@types/d3-ease";
name = "@types/d3-ease@3.0.2";
url = "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz";
hash = "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==";
};
"@types/d3-fetch" = {
out_path = "@types/d3-fetch";
name = "@types/d3-fetch@3.0.7";
url = "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz";
hash = "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==";
};
"@types/d3-force" = {
out_path = "@types/d3-force";
name = "@types/d3-force@3.0.10";
url = "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz";
hash = "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==";
};
"@types/d3-format" = {
out_path = "@types/d3-format";
name = "@types/d3-format@3.0.4";
url = "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz";
hash = "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==";
};
"@types/d3-geo" = {
out_path = "@types/d3-geo";
name = "@types/d3-geo@3.1.0";
url = "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz";
hash = "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==";
};
"@types/d3-hierarchy" = {
out_path = "@types/d3-hierarchy";
name = "@types/d3-hierarchy@3.1.7";
url = "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz";
hash = "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==";
};
"@types/d3-interpolate" = {
out_path = "@types/d3-interpolate";
name = "@types/d3-interpolate@3.0.4";
url = "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz";
hash = "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==";
};
"@types/d3-path" = {
out_path = "@types/d3-path";
name = "@types/d3-path@3.1.1";
url = "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz";
hash = "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==";
};
"@types/d3-polygon" = {
out_path = "@types/d3-polygon";
name = "@types/d3-polygon@3.0.2";
url = "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz";
hash = "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==";
};
"@types/d3-quadtree" = {
out_path = "@types/d3-quadtree";
name = "@types/d3-quadtree@3.0.6";
url = "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz";
hash = "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==";
};
"@types/d3-random" = {
out_path = "@types/d3-random";
name = "@types/d3-random@3.0.3";
url = "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz";
hash = "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==";
};
"@types/d3-scale" = {
out_path = "@types/d3-scale";
name = "@types/d3-scale@4.0.9";
url = "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz";
hash = "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==";
};
"@types/d3-scale-chromatic" = {
out_path = "@types/d3-scale-chromatic";
name = "@types/d3-scale-chromatic@3.1.0";
url = "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz";
hash = "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==";
};
"@types/d3-selection" = {
out_path = "@types/d3-selection";
name = "@types/d3-selection@3.0.11";
url = "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz";
hash = "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==";
};
"@types/d3-shape" = {
out_path = "@types/d3-shape";
name = "@types/d3-shape@3.1.7";
url = "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz";
hash = "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==";
};
"@types/d3-time" = {
out_path = "@types/d3-time";
name = "@types/d3-time@3.0.4";
url = "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz";
hash = "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==";
};
"@types/d3-time-format" = {
out_path = "@types/d3-time-format";
name = "@types/d3-time-format@4.0.3";
url = "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz";
hash = "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==";
};
"@types/d3-timer" = {
out_path = "@types/d3-timer";
name = "@types/d3-timer@3.0.2";
url = "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz";
hash = "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==";
};
"@types/d3-transition" = {
out_path = "@types/d3-transition";
name = "@types/d3-transition@3.0.9";
url = "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz";
hash = "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==";
};
"@types/d3-zoom" = {
out_path = "@types/d3-zoom";
name = "@types/d3-zoom@3.0.8";
url = "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz";
hash = "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==";
};
"@types/debug" = {
out_path = "@types/debug";
name = "@types/debug@4.1.12";
url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz";
hash = "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==";
};
"@types/estree" = {
out_path = "@types/estree";
name = "@types/estree@1.0.8";
url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz";
hash = "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==";
};
"@types/estree-jsx" = {
out_path = "@types/estree-jsx";
name = "@types/estree-jsx@1.0.5";
url = "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz";
hash = "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==";
};
"@types/geojson" = {
out_path = "@types/geojson";
name = "@types/geojson@7946.0.16";
url = "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz";
hash = "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==";
};
"@types/hast" = {
out_path = "@types/hast";
name = "@types/hast@3.0.4";
url = "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz";
hash = "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==";
};
"@types/history" = {
out_path = "@types/history";
name = "@types/history@4.7.11";
url = "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz";
hash = "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==";
};
"@types/jsdom" = {
out_path = "@types/jsdom";
name = "@types/jsdom@21.1.4";
url = "https://registry.npmjs.org/@types/jsdom/-/jsdom-21.1.4.tgz";
hash = "sha512-NzAMLEV0KQ4cBaDx3Ls8VfJUElyDUm1xrtYRmcMK0gF8L5xYbujFVaQlJ50yinQ/d47j2rEP1XUzkiYrw4YRFA==";
};
"@types/mdast" = {
out_path = "@types/mdast";
name = "@types/mdast@4.0.4";
url = "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz";
hash = "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==";
};
"@types/ms" = {
out_path = "@types/ms";
name = "@types/ms@2.1.0";
url = "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz";
hash = "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==";
};
"@types/node" = {
out_path = "@types/node";
name = "@types/node@24.6.0";
url = "https://registry.npmjs.org/@types/node/-/node-24.6.0.tgz";
hash = "sha512-F1CBxgqwOMc4GKJ7eY22hWhBVQuMYTtqI8L0FcszYcpYX0fzfDGpez22Xau8Mgm7O9fI+zA/TYIdq3tGWfweBA==";
};
"@types/prismjs" = {
out_path = "@types/prismjs";
name = "@types/prismjs@1.26.5";
url = "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz";
hash = "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==";
};
"@types/prompts" = {
out_path = "@types/prompts";
name = "@types/prompts@2.4.9";
url = "https://registry.npmjs.org/@types/prompts/-/prompts-2.4.9.tgz";
hash = "sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==";
};
"@types/react" = {
out_path = "@types/react";
name = "@types/react@19.1.13";
url = "https://registry.npmjs.org/@types/react/-/react-19.1.13.tgz";
hash = "sha512-hHkbU/eoO3EG5/MZkuFSKmYqPbSVk5byPFa3e7y/8TybHiLMACgI8seVYlicwk7H5K/rI2px9xrQp/C+AUDTiQ==";
};
"@types/react-dom" = {
out_path = "@types/react-dom";
name = "@types/react-dom@19.1.9";
url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.9.tgz";
hash = "sha512-qXRuZaOsAdXKFyOhRBg6Lqqc0yay13vN7KrIg4L7N4aaHN68ma9OK3NE1BoDFgFOTfM7zg+3/8+2n8rLUH3OKQ==";
};
"@types/react-router" = {
out_path = "@types/react-router";
name = "@types/react-router@5.1.20";
url = "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz";
hash = "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==";
};
"@types/react-router-dom" = {
out_path = "@types/react-router-dom";
name = "@types/react-router-dom@5.3.3";
url = "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz";
hash = "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==";
};
"@types/tough-cookie" = {
out_path = "@types/tough-cookie";
name = "@types/tough-cookie@4.0.5";
url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz";
hash = "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==";
};
"@types/trusted-types" = {
out_path = "@types/trusted-types";
name = "@types/trusted-types@2.0.7";
url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz";
hash = "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==";
};
"@types/unist" = {
out_path = "@types/unist";
name = "@types/unist@3.0.3";
url = "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz";
hash = "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==";
};
"@uiw/copy-to-clipboard" = {
out_path = "@uiw/copy-to-clipboard";
name = "@uiw/copy-to-clipboard@1.0.17";
url = "https://registry.npmjs.org/@uiw/copy-to-clipboard/-/copy-to-clipboard-1.0.17.tgz";
hash = "sha512-O2GUHV90Iw2VrSLVLK0OmNIMdZ5fgEg4NhvtwINsX+eZ/Wf6DWD0TdsK9xwV7dNRnK/UI2mQtl0a2/kRgm1m1A==";
};
"@uiw/react-markdown-preview" = {
out_path = "@uiw/react-markdown-preview";
name = "@uiw/react-markdown-preview@5.1.5";
url = "https://registry.npmjs.org/@uiw/react-markdown-preview/-/react-markdown-preview-5.1.5.tgz";
hash = "sha512-DNOqx1a6gJR7Btt57zpGEKTfHRlb7rWbtctMRO2f82wWcuoJsxPBrM+JWebDdOD0LfD8oe2CQvW2ICQJKHQhZg==";
};
"@uiw/react-md-editor" = {
out_path = "@uiw/react-md-editor";
name = "@uiw/react-md-editor@4.0.8";
url = "https://registry.npmjs.org/@uiw/react-md-editor/-/react-md-editor-4.0.8.tgz";
hash = "sha512-S3mOzZeGmJNhzdXJxRTCwsFMDp8nBWeQUf59cK3L6QHzDUHnRoHpcmWpfVRyKGKSg8zaI2+meU5cYWf8kYn3mQ==";
};
"@ungap/structured-clone" = {
out_path = "@ungap/structured-clone";
name = "@ungap/structured-clone@1.3.0";
url = "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz";
hash = "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==";
};
"@xterm/headless" = {
out_path = "@xterm/headless";
name = "@xterm/headless@5.5.0";
url = "https://registry.npmjs.org/@xterm/headless/-/headless-5.5.0.tgz";
hash = "sha512-5xXB7kdQlFBP82ViMJTwwEc3gKCLGKR/eoxQm4zge7GPBl86tCdI0IdPJjoKd8mUSFXz5V7i/25sfsEkP4j46g==";
};
"abab" = {
out_path = "abab";
name = "abab@2.0.6";
url = "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz";
hash = "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==";
};
"abort-controller" = {
out_path = "abort-controller";
name = "abort-controller@3.0.0";
url = "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz";
hash = "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==";
};
"accepts" = {
out_path = "accepts";
name = "accepts@2.0.0";
url = "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz";
hash = "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==";
};
"acorn" = {
out_path = "acorn";
binaries = {
"acorn" = "../acorn/bin/acorn";
};
name = "acorn@8.15.0";
url = "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz";
hash = "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==";
};
"agent-base" = {
out_path = "agent-base";
name = "agent-base@6.0.2";
url = "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz";
hash = "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==";
};
"ajv" = {
out_path = "ajv";
name = "ajv@6.12.6";
url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz";
hash = "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==";
};
"ansi-escapes" = {
out_path = "ansi-escapes";
name = "ansi-escapes@7.1.1";
url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.1.1.tgz";
hash = "sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==";
};
"ansi-regex" = {
out_path = "ansi-regex";
name = "ansi-regex@6.2.2";
url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz";
hash = "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==";
};
"ansi-styles" = {
out_path = "ansi-styles";
name = "ansi-styles@6.2.3";
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz";
hash = "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==";
};
"any-base" = {
out_path = "any-base";
name = "any-base@1.1.0";
url = "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz";
hash = "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==";
};
"argparse" = {
out_path = "argparse";
name = "argparse@1.0.10";
url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
hash = "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
};
"asynckit" = {
out_path = "asynckit";
name = "asynckit@0.4.0";
url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
hash = "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==";