-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
17884 lines (14410 loc) · 661 KB
/
pnpm-lock.yaml
File metadata and controls
17884 lines (14410 loc) · 661 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: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
sharp: 0.32.6
use-deep-compare: npm:use-deep-compare-dequal-update@2.0.0
color: 4.2.3
patchedDependencies:
react-native-collapsible-tab-view:
hash: glc4oxb5flf7rhyoyieisogxgi
path: patches/react-native-collapsible-tab-view.patch
importers:
.:
devDependencies:
'@crowdin/cli':
specifier: ^4.12.0
version: 4.12.0(encoding@0.1.13)
apps/expo:
dependencies:
'@atproto/api':
specifier: ^0.13.31
version: 0.13.31
'@bottom-tabs/react-navigation':
specifier: ^1.1.0
version: 1.1.0(@react-navigation/native@7.1.26(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-bottom-tabs@1.1.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@expo/metro-config':
specifier: ^54.0.12
version: 54.0.12(bufferutil@4.0.9)(expo@54.0.30)
'@expo/react-native-action-sheet':
specifier: ^4.1.1
version: 4.1.1(@types/react@19.2.7)(react@19.1.0)
'@formatjs/intl-getcanonicallocales':
specifier: ^3.0.3
version: 3.0.3
'@formatjs/intl-locale':
specifier: ^5.0.4
version: 5.0.4
'@formatjs/intl-pluralrules':
specifier: ^6.0.4
version: 6.0.4
'@gorhom/bottom-sheet':
specifier: 5.2.8
version: 5.2.8(@types/react@19.2.7)(react-native-gesture-handler@2.30.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@graysky/api':
specifier: 0.1.0
version: link:../../packages/api
'@haileyok/bluesky-video':
specifier: ^0.3.2
version: 0.3.2(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@lingui/react':
specifier: ^4.11.4
version: 4.14.1(react@19.1.0)
'@react-native-community/netinfo':
specifier: 11.4.1
version: 11.4.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
'@react-native-community/slider':
specifier: ^5.1.1
version: 5.1.1
'@react-native-menu/menu':
specifier: ^2.0.0
version: 2.0.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@react-navigation/elements':
specifier: ^2.9.3
version: 2.9.3(@react-navigation/native@7.1.26(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@react-navigation/native':
specifier: ^7.1.26
version: 7.1.26(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@sentry/react-native':
specifier: 7.8.0
version: 7.8.0(encoding@0.1.13)(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@shopify/flash-list':
specifier: 2.2.0
version: 2.2.0(@babel/runtime@7.28.4)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
'@tanstack/react-query':
specifier: ^5.90.12
version: 5.90.12(react@19.1.0)
'@trpc/client':
specifier: ^11.8.1
version: 11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3)
'@trpc/react-query':
specifier: ^11.8.1
version: 11.8.1(@tanstack/react-query@5.90.12(react@19.1.0))(@trpc/client@11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3))(@trpc/server@11.8.1(typescript@5.9.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.9.3)
'@trpc/server':
specifier: ^11.8.1
version: 11.8.1(typescript@5.9.3)
bcp-47-match:
specifier: ^2.0.3
version: 2.0.3
clsx:
specifier: ^2.1.1
version: 2.1.1
deprecated-react-native-prop-types:
specifier: ^5.0.0
version: 5.0.0
dotenv:
specifier: ^17.2.3
version: 17.2.3
expo:
specifier: 54.0.30
version: 54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@3.2.3(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0)))(bufferutil@4.0.9)(expo-router@6.0.21)(graphql@15.8.0)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-application:
specifier: ~7.0.8
version: 7.0.8(expo@54.0.30)
expo-av:
specifier: ^16.0.8
version: 16.0.8(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-blur:
specifier: ^15.0.8
version: 15.0.8(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-build-properties:
specifier: ~1.0.10
version: 1.0.10(expo@54.0.30)
expo-clipboard:
specifier: ^8.0.8
version: 8.0.8(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-constants:
specifier: ~18.0.12
version: 18.0.12(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-dev-client:
specifier: ^6.0.20
version: 6.0.20(expo@54.0.30)
expo-device:
specifier: ~8.0.10
version: 8.0.10(expo@54.0.30)
expo-file-system:
specifier: ^19.0.21
version: 19.0.21(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-haptics:
specifier: ^15.0.8
version: 15.0.8(expo@54.0.30)
expo-image:
specifier: ^3.0.11
version: 3.0.11(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-image-manipulator:
specifier: ^14.0.8
version: 14.0.8(expo@54.0.30)
expo-image-picker:
specifier: ~17.0.10
version: 17.0.10(expo@54.0.30)
expo-insights:
specifier: ~0.10.8
version: 0.10.8(expo@54.0.30)
expo-linking:
specifier: ~8.0.11
version: 8.0.11(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-localization:
specifier: ~17.0.8
version: 17.0.8(expo@54.0.30)(react@19.1.0)
expo-media-library:
specifier: ^18.2.1
version: 18.2.1(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-navigation-bar:
specifier: ^5.0.10
version: 5.0.10(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-notifications:
specifier: ^0.32.15
version: 0.32.15(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-quick-actions:
specifier: ^6.0.0
version: 6.0.0(expo@54.0.30)
expo-router:
specifier: 6.0.21
version: 6.0.21(dy3tynsymyhavmoi55ci7doq7y)
expo-screen-orientation:
specifier: ^9.0.8
version: 9.0.8(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-sharing:
specifier: ^14.0.8
version: 14.0.8(expo@54.0.30)
expo-splash-screen:
specifier: ~31.0.13
version: 31.0.13(expo@54.0.30)
expo-system-ui:
specifier: ~6.0.9
version: 6.0.9(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-task-manager:
specifier: ^14.0.9
version: 14.0.9(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
expo-updates:
specifier: ^29.0.15
version: 29.0.15(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
expo-web-browser:
specifier: ~15.0.10
version: 15.0.10(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
fast-text-encoding:
specifier: ^1.0.6
version: 1.0.6
graphemer:
specifier: ^1.4.0
version: 1.4.0
immer:
specifier: ^10.1.3
version: 10.1.3
jwt-decode:
specifier: ^4.0.0
version: 4.0.0
lucide-react-native:
specifier: ^0.562.0
version: 0.562.0(react-native-svg@15.15.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
metro:
specifier: ~0.83.3
version: 0.83.3(bufferutil@4.0.9)
mime:
specifier: ^4.1.0
version: 4.1.0
nativewind:
specifier: ^2.0.11
version: 2.0.11(react@19.1.0)(tailwindcss@3.3.2)
prop-types:
specifier: ^15.8.1
version: 15.8.1
react:
specifier: 19.1.0
version: 19.1.0
react-dom:
specifier: 19.1.0
version: 19.1.0(react@19.1.0)
react-error-boundary:
specifier: ^4.0.13
version: 4.1.2(react@19.1.0)
react-native:
specifier: 0.81.5
version: 0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0)
react-native-avoid-softinput:
specifier: ^8.0.2
version: 8.0.2(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-awesome-gallery:
specifier: ^0.4.2
version: 0.4.3(react-native-gesture-handler@2.30.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-bottom-tabs:
specifier: ^1.1.0
version: 1.1.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-circular-progress:
specifier: ^1.3.9
version: 1.4.1(react-native-svg@15.15.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-collapsible-tab-view:
specifier: 9.0.0-rc.0
version: 9.0.0-rc.0(patch_hash=glc4oxb5flf7rhyoyieisogxgi)(yp4vczpkstwftsi3bmexnb6hle)
react-native-draggable-flatlist:
specifier: ^4.0.3
version: 4.0.3(@babel/core@7.28.5)(react-native-gesture-handler@2.30.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
react-native-drawer-layout:
specifier: 4.2.1
version: 4.2.1(react-native-gesture-handler@2.30.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-edge-to-edge:
specifier: ^1.7.0
version: 1.7.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-gesture-handler:
specifier: ~2.30.0
version: 2.30.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-image-crop-picker:
specifier: 0.51.1
version: 0.51.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-ios-context-menu:
specifier: ^3.2.1
version: 3.2.1(react-native-ios-utilities@5.2.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-ios-utilities:
specifier: ^5.2.0
version: 5.2.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-keyboard-controller:
specifier: ^1.20.2
version: 1.20.2(react-native-reanimated@4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-mmkv:
specifier: ^4.1.0
version: 4.1.0(react-native-nitro-modules@0.31.10(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-pager-view:
specifier: 6.9.1
version: 6.9.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-purchases:
specifier: ^9.6.11
version: 9.6.11(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-reanimated:
specifier: ~4.2.1
version: 4.2.1(react-native-worklets@0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-safari-extension:
specifier: ^1.1.0
version: 1.1.0(expo@54.0.30)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-safe-area-context:
specifier: 5.6.2
version: 5.6.2(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-screens:
specifier: ~4.19.0
version: 4.19.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-svg:
specifier: 15.15.1
version: 15.15.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-toastable:
specifier: ^0.5.0
version: 0.5.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-uitextview:
specifier: 2.1.1
version: 2.1.1(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-url-polyfill:
specifier: ^3.0.0
version: 3.0.0(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))
react-native-view-shot:
specifier: ^4.0.3
version: 4.0.3(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
react-native-worklets:
specifier: ^0.7.1
version: 0.7.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@react-native-community/cli@14.1.0(bufferutil@4.0.9)(typescript@5.9.3))(@types/react@19.2.7)(bufferutil@4.0.9)(react@19.1.0))(react@19.1.0)
rn-fetch-blob:
specifier: ^0.12.0
version: 0.12.0
superjson:
specifier: 1.8.2
version: 1.8.2
tailwind-merge:
specifier: ^3.4.0
version: 3.4.0
zeego:
specifier: ^3.0.6
version: 3.0.6(pyvlh67vuvqt75zss6wb4oqa4a)
zod:
specifier: ^3.24.1
version: 3.25.76
zustand:
specifier: ^5.0.9
version: 5.0.9(@types/react@19.2.7)(immer@10.1.3)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
devDependencies:
'@babel/core':
specifier: ^7.28.5
version: 7.28.5
'@babel/preset-env':
specifier: ^7.28.5
version: 7.28.5(@babel/core@7.28.5)
'@babel/runtime':
specifier: ^7.28.4
version: 7.28.4
'@expo/config-plugins':
specifier: ^54.0.4
version: 54.0.4
'@graysky/eslint-config':
specifier: 0.1.0
version: link:../../tooling/eslint
'@graysky/prettier-config':
specifier: 0.1.0
version: link:../../tooling/prettier
'@graysky/tailwind-config':
specifier: 0.1.0
version: link:../../tooling/tailwind
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../../tooling/typescript
'@lingui/cli':
specifier: ^4.8.0
version: 4.14.1(typescript@5.9.3)
'@lingui/macro':
specifier: ^4.8.0
version: 4.14.1(@lingui/react@4.14.1(react@19.1.0))(babel-plugin-macros@3.1.0)(typescript@5.9.3)
'@types/babel__core':
specifier: ^7.20.5
version: 7.20.5
'@types/react':
specifier: ^19.2.7
version: 19.2.7
'@types/webpack-env':
specifier: ^1.18.4
version: 1.18.8
autoprefixer:
specifier: ^10.4.23
version: 10.4.23(postcss@8.5.6)
babel-plugin-macros:
specifier: ^3.1.0
version: 3.1.0
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
postcss:
specifier: ^8.5.6
version: 8.5.6
prettier:
specifier: ^3.7.4
version: 3.7.4
tailwindcss:
specifier: 3.3.2
version: 3.3.2
typescript:
specifier: ^5.9.3
version: 5.9.3
apps/nextjs:
dependencies:
'@atproto/api':
specifier: ^0.13.31
version: 0.13.31
'@atproto/identity':
specifier: ^0.4.10
version: 0.4.10
'@atproto/xrpc-server':
specifier: ^0.10.4
version: 0.10.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
'@graysky/api':
specifier: 0.1.0
version: link:../../packages/api
'@graysky/db':
specifier: 0.1.0
version: link:../../packages/db
'@graysky/tailwind-config':
specifier: 0.1.0
version: link:../../tooling/tailwind
'@tanstack/react-query':
specifier: ^5.90.12
version: 5.90.12(react@19.2.0)
'@trpc/client':
specifier: ^11.8.1
version: 11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3)
'@trpc/next':
specifier: ^11.8.1
version: 11.8.1(@tanstack/react-query@5.90.12(react@19.2.0))(@trpc/client@11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3))(@trpc/react-query@11.8.1(@tanstack/react-query@5.90.12(react@19.2.0))(@trpc/client@11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3))(@trpc/server@11.8.1(typescript@5.9.3))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@trpc/server@11.8.1(typescript@5.9.3))(next@16.1.0(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
'@trpc/react-query':
specifier: ^11.8.1
version: 11.8.1(@tanstack/react-query@5.90.12(react@19.2.0))(@trpc/client@11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3))(@trpc/server@11.8.1(typescript@5.9.3))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
'@trpc/server':
specifier: ^11.8.1
version: 11.8.1(typescript@5.9.3)
'@vercel/analytics':
specifier: ^1.6.1
version: 1.6.1(next@16.1.0(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)
'@vercel/kv':
specifier: ^3.0.0
version: 3.0.0
'@vercel/speed-insights':
specifier: ^1.3.1
version: 1.3.1(next@16.1.0(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)
bright:
specifier: ^1.0.0
version: 1.0.0(react@19.2.0)
gray-matter:
specifier: ^4.0.3
version: 4.0.3
lucide-react:
specifier: ^0.562.0
version: 0.562.0(react@19.2.0)
next:
specifier: 16.1.0
version: 16.1.0(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
next-mdx-remote:
specifier: ^5.0.0
version: 5.0.0(@types/react@19.2.7)(react@19.2.0)
react:
specifier: 19.2.0
version: 19.2.0
react-dom:
specifier: 19.2.0
version: 19.2.0(react@19.2.0)
react-wrap-balancer:
specifier: ^1.1.0
version: 1.1.1(react@19.2.0)
rehype-autolink-headings:
specifier: ^7.1.0
version: 7.1.0
rehype-slug:
specifier: ^6.0.0
version: 6.0.0
remark-custom-heading-id:
specifier: ^2.0.0
version: 2.0.0
remark-gfm:
specifier: ^4.0.1
version: 4.0.1
sharp:
specifier: 0.32.6
version: 0.32.6
superjson:
specifier: 2.2.6
version: 2.2.6
zod:
specifier: ^3.24.1
version: 3.25.76
devDependencies:
'@graysky/eslint-config':
specifier: 0.1.0
version: link:../../tooling/eslint
'@graysky/prettier-config':
specifier: 0.1.0
version: link:../../tooling/prettier
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../../tooling/typescript
'@types/node':
specifier: ^25.0.3
version: 25.0.3
'@types/react':
specifier: ^19.2.7
version: 19.2.7
'@types/react-dom':
specifier: ^19.2.3
version: 19.2.3(@types/react@19.2.7)
autoprefixer:
specifier: ^10.4.23
version: 10.4.23(postcss@8.5.6)
dotenv-cli:
specifier: ^11.0.0
version: 11.0.0
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
postcss:
specifier: ^8.5.6
version: 8.5.6
prettier:
specifier: ^3.7.4
version: 3.7.4
tailwindcss:
specifier: 4.1.18
version: 4.1.18
typescript:
specifier: ^5.9.3
version: 5.9.3
apps/push-notifs:
dependencies:
'@atproto/api':
specifier: ^0.13.31
version: 0.13.31
'@graysky/db':
specifier: 0.1.0
version: link:../../packages/db
atproto-firehose:
specifier: ^0.2.2
version: 0.2.2
cron:
specifier: ^3.1.7
version: 3.5.0
dotenv-cli:
specifier: ^11.0.0
version: 11.0.0
esbuild:
specifier: ^0.24.0
version: 0.24.2
expo-server-sdk:
specifier: ^3.9.0
version: 3.13.0(encoding@0.1.13)
redis:
specifier: ^4.6.13
version: 4.7.0
devDependencies:
'@graysky/eslint-config':
specifier: 0.1.0
version: link:../../tooling/eslint
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../../tooling/typescript
'@types/node':
specifier: ^25.0.3
version: 25.0.3
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
prettier:
specifier: ^3.7.4
version: 3.7.4
tsx:
specifier: ^4.21.0
version: 4.21.0
typescript:
specifier: ^5.9.3
version: 5.9.3
packages/api:
dependencies:
'@atproto/api':
specifier: ^0.13.31
version: 0.13.31
'@atproto/identity':
specifier: ^0.4.10
version: 0.4.10
'@atproto/xrpc-server':
specifier: ^0.10.4
version: 0.10.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
'@graysky/db':
specifier: 0.1.0
version: link:../db
'@trpc/client':
specifier: ^11.8.1
version: 11.8.1(@trpc/server@11.8.1(typescript@5.9.3))(typescript@5.9.3)
'@trpc/server':
specifier: ^11.8.1
version: 11.8.1(typescript@5.9.3)
'@vercel/analytics':
specifier: ^1.6.1
version: 1.6.1(next@16.1.0(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)
'@vercel/kv':
specifier: ^3.0.0
version: 3.0.0
encoding:
specifier: ^0.1.13
version: 0.1.13
lande:
specifier: ^1.0.10
version: 1.0.10
sharp:
specifier: 0.32.6
version: 0.32.6
superjson:
specifier: 2.2.6
version: 2.2.6
zod:
specifier: ^3.24.1
version: 3.25.76
devDependencies:
'@graysky/eslint-config':
specifier: 0.1.0
version: link:../../tooling/eslint
'@graysky/prettier-config':
specifier: 0.1.0
version: link:../../tooling/prettier
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../../tooling/typescript
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
prettier:
specifier: ^3.7.4
version: 3.7.4
typescript:
specifier: ^5.9.3
version: 5.9.3
packages/db:
dependencies:
'@prisma/client':
specifier: ^5.12.1
version: 5.22.0(prisma@5.22.0)
devDependencies:
'@graysky/eslint-config':
specifier: 0.1.0
version: link:../../tooling/eslint
'@graysky/prettier-config':
specifier: 0.1.0
version: link:../../tooling/prettier
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../../tooling/typescript
dotenv-cli:
specifier: ^11.0.0
version: 11.0.0
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
prettier:
specifier: ^3.7.4
version: 3.7.4
prisma:
specifier: ^5.12.1
version: 5.22.0
typescript:
specifier: ^5.9.3
version: 5.9.3
tooling/eslint:
dependencies:
'@eslint/compat':
specifier: ^2.0.0
version: 2.0.0(eslint@9.39.2(jiti@2.6.1))
'@next/eslint-plugin-next':
specifier: ^16.1.0
version: 16.1.0
'@types/eslint':
specifier: ^9.6.1
version: 9.6.1
'@typescript-eslint/eslint-plugin':
specifier: ^8.50.0
version: 8.50.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: ^8.50.0
version: 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
eslint-config-prettier:
specifier: ^10.1.8
version: 10.1.8(eslint@9.39.2(jiti@2.6.1))
eslint-config-turbo:
specifier: ^2.7.1
version: 2.7.1(eslint@9.39.2(jiti@2.6.1))(turbo@2.5.8)
eslint-plugin-import:
specifier: ^2.32.0
version: 2.32.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))
eslint-plugin-jsx-a11y:
specifier: ^6.8.0
version: 6.10.2(eslint@9.39.2(jiti@2.6.1))
eslint-plugin-react:
specifier: ^7.37.5
version: 7.37.5(eslint@9.39.2(jiti@2.6.1))
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.2
version: 19.1.0-rc.2(eslint@9.39.2(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: ^7.0.1
version: 7.0.1(eslint@9.39.2(jiti@2.6.1))
typescript-eslint:
specifier: ^8.50.0
version: 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
devDependencies:
'@graysky/prettier-config':
specifier: 0.1.0
version: link:../prettier
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../typescript
eslint:
specifier: ^9.39.2
version: 9.39.2(jiti@2.6.1)
typescript:
specifier: ^5.9.3
version: 5.9.3
tooling/prettier:
dependencies:
'@ianvs/prettier-plugin-sort-imports':
specifier: ^4.7.0
version: 4.7.0(prettier@3.7.4)
prettier:
specifier: ^3.7.4
version: 3.7.4
prettier-plugin-tailwindcss:
specifier: ^0.7.2
version: 0.7.2(@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.7.4))(prettier@3.7.4)
devDependencies:
'@graysky/tsconfig':
specifier: 0.1.0
version: link:../typescript
typescript:
specifier: ^5.9.3
version: 5.9.3
tooling/tailwind:
devDependencies:
'@tailwindcss/postcss':
specifier: ^4.1.18
version: 4.1.18
postcss:
specifier: ^8.5.6
version: 8.5.6
tailwindcss:
specifier: 4.1.18
version: 4.1.18
tooling/typescript: {}
packages:
'@0no-co/graphql.web@1.2.0':
resolution: {integrity: sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@atproto/api@0.13.31':
resolution: {integrity: sha512-i2cUQuwe+3j8rgPJj4YWRjSQeJunGqJ3IzesnvbODjjZh3IS9jB80BZ/pTe/AvNg6JCBbqeWJjWDVKeFHaiZAw==}
'@atproto/api@0.3.13':
resolution: {integrity: sha512-smDlomgipca16G+jKXAZSMfsAmA5wG8WR3Z1dj29ZShVJlhs6+HHdxX7dWVDYEdSeb2rp/wyHN/tQhxGDAkz/g==}
'@atproto/common-web@0.2.4':
resolution: {integrity: sha512-6+DOhQcTklFmeiSkZRx6iFeqi4OFtGl4yEDGATk00q4tEcPoPvyOBtYHN6+G9lrfJIfx5RfmggamvXlJv1PxxA==}
'@atproto/common-web@0.3.2':
resolution: {integrity: sha512-Vx0JtL1/CssJbFAb0UOdvTrkbUautsDfHNOXNTcX2vyPIxH9xOameSqLLunM1hZnOQbJwyjmQCt6TV+bhnanDg==}
'@atproto/common-web@0.4.3':
resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==}
'@atproto/common-web@0.4.7':
resolution: {integrity: sha512-vjw2+81KPo2/SAbbARGn64Ln+6JTI0FTI4xk8if0ebBfDxFRmHb2oSN1y77hzNq/ybGHqA2mecfhS03pxC5+lg==}
'@atproto/common@0.2.0':
resolution: {integrity: sha512-PVYSC30pyonz2MOxuBLk27uGdwyZQ42gJfCA/NE9jLeuenVDmZnVrK5WqJ7eGg+F88rZj7NcGfRsZdP0GMykEQ==}
'@atproto/common@0.5.3':
resolution: {integrity: sha512-jMC9ikl8QbJcnh21upe9Gb9mIaSJWsdp8sgaelmntUtChWnxxvCC/pI3TBX11PT7XlHUE6UyuvY+S3hh6WZVEg==}
engines: {node: '>=18.7.0'}
'@atproto/crypto@0.4.4':
resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==}
engines: {node: '>=18.7.0'}
'@atproto/crypto@0.4.5':
resolution: {integrity: sha512-n40aKkMoCatP0u9Yvhrdk6fXyOHFDDbkdm4h4HCyWW+KlKl8iXfD5iV+ECq+w5BM+QH25aIpt3/j6EUNerhLxw==}
engines: {node: '>=18.7.0'}
'@atproto/identifier@0.2.1':
resolution: {integrity: sha512-WCgDgqv3aoAZ7S0R96SsHMgzodLjy95iacD5nVDdefMJj2HkL8ygv9WCjcsBWxXcpRbKip2mcpnQhxduS6oRkw==}
deprecated: This package is now deprecated. Please use @atproto/syntax, which provides the same interfaces.
'@atproto/identity@0.0.1':
resolution: {integrity: sha512-G1dwy+rW71v7KzRRownV398ebSMckl0VxuzpdgjaWXoD5H40hPpj2xze4H0SPcym/GaVbHDx/LXfuVOJpb7cRg==}
'@atproto/identity@0.4.10':
resolution: {integrity: sha512-nQbzDLXOhM8p/wo0cTh5DfMSOSHzj6jizpodX37LJ4S1TZzumSxAjHEZa5Rev3JaoD5uSWMVE0MmKEGWkPPvfQ==}
engines: {node: '>=18.7.0'}
'@atproto/lex-cbor@0.0.3':
resolution: {integrity: sha512-N8lCV3kK5ZcjSOWxKLWqzlnaSpK4isjXRZ0EqApl/5y9KB64s78hQ/U3KIE5qnPRlBbW5kSH3YACoU27u9nTOA==}
'@atproto/lex-data@0.0.3':
resolution: {integrity: sha512-ivo1IpY/EX+RIpxPgCf4cPhQo5bfu4nrpa1vJCt8hCm9SfoonJkDFGa0n4SMw4JnXZoUcGcrJ46L+D8bH6GI2g==}
'@atproto/lex-json@0.0.3':
resolution: {integrity: sha512-ZVcY7XlRfdPYvQQ2WroKUepee0+NCovrSXgXURM3Xv+n5jflJCoczguROeRr8sN0xvT0ZbzMrDNHCUYKNnxcjw==}
'@atproto/lexicon@0.1.0':
resolution: {integrity: sha512-Iy+gV9w42xLhrZrmcbZh7VFoHjXuzWvecGHIfz44owNjjv7aE/d2P5BbOX/XicSkmQ8Qkpg0BqwYDD1XBVS+DQ==}
'@atproto/lexicon@0.4.5':
resolution: {integrity: sha512-fljWqMGKn+XWtTprBcS3F1hGBREnQYh6qYHv2sjENucc7REms1gtmZXSerB9N6pVeHVNOnXiILdukeAcic5OEw==}
'@atproto/lexicon@0.5.2':
resolution: {integrity: sha512-lRmJgMA8f5j7VB5Iu5cp188ald5FuI4FlmZ7nn6EBrk1dgOstWVrI5Ft6K3z2vjyLZRG6nzknlsw+tDP63p7bQ==}
'@atproto/lexicon@0.6.0':
resolution: {integrity: sha512-5veb8aD+J5M0qszLJ+73KSFsFrJBgAY/nM1TSAJvGY7fNc9ZAT+PSUlmIyrdye9YznAZ07yktalls/TwNV7cHQ==}
'@atproto/nsid@0.1.1':
resolution: {integrity: sha512-fTsHfiq2NF+Zm3P1XzeBrHh9BYoy5dEzGev3sY69nhemcKnfsbj/agnIN2ekSOAlyj0Bj405/3BHQSQeiDbz1w==}
deprecated: This package is now deprecated. Please use @atproto/syntax, which provides the same interfaces.
'@atproto/syntax@0.1.5':
resolution: {integrity: sha512-pbY5lOnThoAbsmrdbN9LC/dNmckfqODJiX9zjW2t3BIHYFeGBc6w9bK3Vre8A0Hg8yWkQpv6gaBLu+ykgi2DJQ==}
'@atproto/syntax@0.3.1':
resolution: {integrity: sha512-fzW0Mg1QUOVCWUD3RgEsDt6d1OZ6DdFmbKcDdbzUfh0t4rhtRAC05KbZYmxuMPWDAiJ4BbbQ5dkAc/mNypMXkw==}
'@atproto/syntax@0.4.1':
resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==}
'@atproto/syntax@0.4.2':
resolution: {integrity: sha512-X9XSRPinBy/0VQ677j8VXlBsYSsUXaiqxWVpGGxJYsAhugdQRb0jqaVKJFtm6RskeNkV6y9xclSUi9UYG/COrA==}
'@atproto/uri@0.1.1':
resolution: {integrity: sha512-6l5Q0ajGHnecOd2ACuvXVpvZGK7gE+Y78y/oq29WdjWPvTeg7fBzcXlDXcZMOvBqhDJIigmAO2YCKmxqc4wJ1g==}
deprecated: This package is now deprecated. Please use @atproto/syntax, which provides the same interfaces.
'@atproto/ws-client@0.0.4':
resolution: {integrity: sha512-dox1XIymuC7/ZRhUqKezIGgooZS45C6vHCfu0PnWjfvsLCK2kAlnvX4IBkA/WpcoijDhQ9ejChnFbo/sLmgvAg==}
engines: {node: '>=18.7.0'}
'@atproto/xrpc-server@0.10.4':
resolution: {integrity: sha512-d35X0RrKycfYlPL0M/Oy3Flv3fFD9b1f+ljS664nDJ4pV8zMJ38nk3ZxkJQAsMOVzs6NNQ8W6cepmVPgrHY+8g==}
engines: {node: '>=18.7.0'}
'@atproto/xrpc@0.6.6':
resolution: {integrity: sha512-umXEYVMo9/pyIBoKmIAIi64RXDW9tSXY+wqztlQ6I2GZtjLfNZqmAWU+wADk3SxUe54mvjxxGyA4TtyGtDMfhA==}
'@atproto/xrpc@0.7.5':
resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==}
'@atproto/xrpc@0.7.7':
resolution: {integrity: sha512-K1ZyO/BU8JNtXX5dmPp7b5UrkLMMqpsIa/Lrj5D3Su+j1Xwq1m6QJ2XJ1AgjEjkI1v4Muzm7klianLE6XGxtmA==}
'@babel/code-frame@7.10.4':
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.28.5':
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.3':
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.5':
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.28.3':
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-class-features-plugin@7.28.5':
resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.28.5':
resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.5':
resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.27.1':
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.27.1':
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.28.3':
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.25.9':
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.4':
resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
engines: {node: '>=6.0.0'}
hasBin: true