-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorpus.gitmodules
More file actions
6000 lines (6000 loc) · 285 KB
/
Copy pathcorpus.gitmodules
File metadata and controls
6000 lines (6000 loc) · 285 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
[submodule "typescript-repos/Infisical__infisical"]
path = typescript-repos/Infisical__infisical
url = https://github.com/Infisical/infisical.git
[submodule "typescript-repos/amruthpillai__reactive-resume"]
path = typescript-repos/amruthpillai__reactive-resume
url = https://github.com/amruthpillai/reactive-resume.git
[submodule "typescript-repos/ajv-validator__ajv"]
path = typescript-repos/ajv-validator__ajv
url = https://github.com/ajv-validator/ajv.git
[submodule "typescript-repos/wasp-lang__open-saas"]
path = typescript-repos/wasp-lang__open-saas
url = https://github.com/wasp-lang/open-saas.git
[submodule "typescript-repos/callstack__linaria"]
path = typescript-repos/callstack__linaria
url = https://github.com/callstack/linaria.git
[submodule "typescript-repos/sequelize__sequelize"]
path = typescript-repos/sequelize__sequelize
url = https://github.com/sequelize/sequelize.git
[submodule "typescript-repos/mockoon__mockoon"]
path = typescript-repos/mockoon__mockoon
url = https://github.com/mockoon/mockoon.git
[submodule "typescript-repos/voidcosmos__npkill"]
path = typescript-repos/voidcosmos__npkill
url = https://github.com/voidcosmos/npkill.git
[submodule "typescript-repos/teableio__teable"]
path = typescript-repos/teableio__teable
url = https://github.com/teableio/teable.git
[submodule "typescript-repos/nocobase__nocobase"]
path = typescript-repos/nocobase__nocobase
url = https://github.com/nocobase/nocobase.git
[submodule "typescript-repos/TriliumNext__Trilium"]
path = typescript-repos/TriliumNext__Trilium
url = https://github.com/TriliumNext/Trilium.git
[submodule "typescript-repos/MuiseDestiny__zotero-gpt"]
path = typescript-repos/MuiseDestiny__zotero-gpt
url = https://github.com/MuiseDestiny/zotero-gpt.git
[submodule "typescript-repos/colinhacks__zod"]
path = typescript-repos/colinhacks__zod
url = https://github.com/colinhacks/zod.git
[submodule "typescript-repos/getsentry__sentry-javascript"]
path = typescript-repos/getsentry__sentry-javascript
url = https://github.com/getsentry/sentry-javascript.git
[submodule "typescript-repos/appium__appium"]
path = typescript-repos/appium__appium
url = https://github.com/appium/appium.git
[submodule "typescript-repos/angular__angular-cli"]
path = typescript-repos/angular__angular-cli
url = https://github.com/angular/angular-cli.git
[submodule "typescript-repos/probot__probot"]
path = typescript-repos/probot__probot
url = https://github.com/probot/probot.git
[submodule "typescript-repos/aidenybai__react-grab"]
path = typescript-repos/aidenybai__react-grab
url = https://github.com/aidenybai/react-grab.git
[submodule "typescript-repos/pavlobu__deskreen"]
path = typescript-repos/pavlobu__deskreen
url = https://github.com/pavlobu/deskreen.git
[submodule "typescript-repos/ether__etherpad-lite"]
path = typescript-repos/ether__etherpad-lite
url = https://github.com/ether/etherpad-lite.git
[submodule "typescript-repos/Koenkk__zigbee2mqtt"]
path = typescript-repos/Koenkk__zigbee2mqtt
url = https://github.com/Koenkk/zigbee2mqtt.git
[submodule "typescript-repos/NginxProxyManager__nginx-proxy-manager"]
path = typescript-repos/NginxProxyManager__nginx-proxy-manager
url = https://github.com/NginxProxyManager/nginx-proxy-manager.git
[submodule "typescript-repos/yoavbls__pretty-ts-errors"]
path = typescript-repos/yoavbls__pretty-ts-errors
url = https://github.com/yoavbls/pretty-ts-errors.git
[submodule "typescript-repos/Lissy93__personal-security-checklist"]
path = typescript-repos/Lissy93__personal-security-checklist
url = https://github.com/Lissy93/personal-security-checklist.git
[submodule "typescript-repos/react-native-webview__react-native-webview"]
path = typescript-repos/react-native-webview__react-native-webview
url = https://github.com/react-native-webview/react-native-webview.git
[submodule "typescript-repos/linkwarden__linkwarden"]
path = typescript-repos/linkwarden__linkwarden
url = https://github.com/linkwarden/linkwarden.git
[submodule "typescript-repos/superset-sh__superset"]
path = typescript-repos/superset-sh__superset
url = https://github.com/superset-sh/superset.git
[submodule "typescript-repos/wenyan-lang__wenyan"]
path = typescript-repos/wenyan-lang__wenyan
url = https://github.com/wenyan-lang/wenyan.git
[submodule "typescript-repos/vuejs__pinia"]
path = typescript-repos/vuejs__pinia
url = https://github.com/vuejs/pinia.git
[submodule "typescript-repos/Mail-0__Zero"]
path = typescript-repos/Mail-0__Zero
url = https://github.com/Mail-0/Zero.git
[submodule "typescript-repos/fastrepl__char"]
path = typescript-repos/fastrepl__char
url = https://github.com/fastrepl/char.git
[submodule "typescript-repos/t3-oss__create-t3-app"]
path = typescript-repos/t3-oss__create-t3-app
url = https://github.com/t3-oss/create-t3-app.git
[submodule "typescript-repos/nodegui__react-nodegui"]
path = typescript-repos/nodegui__react-nodegui
url = https://github.com/nodegui/react-nodegui.git
[submodule "typescript-repos/HerbertHe__iptv-sources"]
path = typescript-repos/HerbertHe__iptv-sources
url = https://github.com/HerbertHe/iptv-sources.git
[submodule "typescript-repos/redwoodjs__graphql"]
path = typescript-repos/redwoodjs__graphql
url = https://github.com/redwoodjs/graphql.git
[submodule "typescript-repos/iib0011__omni-tools"]
path = typescript-repos/iib0011__omni-tools
url = https://github.com/iib0011/omni-tools.git
[submodule "typescript-repos/mrousavy__react-native-mmkv"]
path = typescript-repos/mrousavy__react-native-mmkv
url = https://github.com/mrousavy/react-native-mmkv.git
[submodule "typescript-repos/blakeblackshear__frigate"]
path = typescript-repos/blakeblackshear__frigate
url = https://github.com/blakeblackshear/frigate.git
[submodule "typescript-repos/lencx__Noi"]
path = typescript-repos/lencx__Noi
url = https://github.com/lencx/Noi.git
[submodule "typescript-repos/calcom__cal.com"]
path = typescript-repos/calcom__cal.com
url = https://github.com/calcom/cal.com.git
[submodule "typescript-repos/Stirling-Tools__Stirling-PDF"]
path = typescript-repos/Stirling-Tools__Stirling-PDF
url = https://github.com/Stirling-Tools/Stirling-PDF.git
[submodule "typescript-repos/egoist__tsup"]
path = typescript-repos/egoist__tsup
url = https://github.com/egoist/tsup.git
[submodule "typescript-repos/nodejs__nodejs.org"]
path = typescript-repos/nodejs__nodejs.org
url = https://github.com/nodejs/nodejs.org.git
[submodule "typescript-repos/emilkowalski__vaul"]
path = typescript-repos/emilkowalski__vaul
url = https://github.com/emilkowalski/vaul.git
[submodule "typescript-repos/redis__ioredis"]
path = typescript-repos/redis__ioredis
url = https://github.com/redis/ioredis.git
[submodule "typescript-repos/pubkey__rxdb"]
path = typescript-repos/pubkey__rxdb
url = https://github.com/pubkey/rxdb.git
[submodule "typescript-repos/documenso__documenso"]
path = typescript-repos/documenso__documenso
url = https://github.com/documenso/documenso.git
[submodule "typescript-repos/stan-smith__FossFLOW"]
path = typescript-repos/stan-smith__FossFLOW
url = https://github.com/stan-smith/FossFLOW.git
[submodule "typescript-repos/eclipse-che__che"]
path = typescript-repos/eclipse-che__che
url = https://github.com/eclipse-che/che.git
[submodule "typescript-repos/nukeop__nuclear"]
path = typescript-repos/nukeop__nuclear
url = https://github.com/nukeop/nuclear.git
[submodule "typescript-repos/antfu-collective__vitesse"]
path = typescript-repos/antfu-collective__vitesse
url = https://github.com/antfu-collective/vitesse.git
[submodule "typescript-repos/pmndrs__use-gesture"]
path = typescript-repos/pmndrs__use-gesture
url = https://github.com/pmndrs/use-gesture.git
[submodule "typescript-repos/ianstormtaylor__slate"]
path = typescript-repos/ianstormtaylor__slate
url = https://github.com/ianstormtaylor/slate.git
[submodule "typescript-repos/reduxjs__redux"]
path = typescript-repos/reduxjs__redux
url = https://github.com/reduxjs/redux.git
[submodule "typescript-repos/omnivore-app__omnivore"]
path = typescript-repos/omnivore-app__omnivore
url = https://github.com/omnivore-app/omnivore.git
[submodule "typescript-repos/apify__crawlee"]
path = typescript-repos/apify__crawlee
url = https://github.com/apify/crawlee.git
[submodule "typescript-repos/superagent-ai__superagent"]
path = typescript-repos/superagent-ai__superagent
url = https://github.com/superagent-ai/superagent.git
[submodule "typescript-repos/styleguidist__react-styleguidist"]
path = typescript-repos/styleguidist__react-styleguidist
url = https://github.com/styleguidist/react-styleguidist.git
[submodule "typescript-repos/steven-tey__novel"]
path = typescript-repos/steven-tey__novel
url = https://github.com/steven-tey/novel.git
[submodule "typescript-repos/xiangsx__gpt4free-ts"]
path = typescript-repos/xiangsx__gpt4free-ts
url = https://github.com/xiangsx/gpt4free-ts.git
[submodule "typescript-repos/fastapi__full-stack-fastapi-template"]
path = typescript-repos/fastapi__full-stack-fastapi-template
url = https://github.com/fastapi/full-stack-fastapi-template.git
[submodule "typescript-repos/huggingface__chat-ui"]
path = typescript-repos/huggingface__chat-ui
url = https://github.com/huggingface/chat-ui.git
[submodule "typescript-repos/RSSNext__Folo"]
path = typescript-repos/RSSNext__Folo
url = https://github.com/RSSNext/Folo.git
[submodule "typescript-repos/phosphor-icons__homepage"]
path = typescript-repos/phosphor-icons__homepage
url = https://github.com/phosphor-icons/homepage.git
[submodule "typescript-repos/satnaing__shadcn-admin"]
path = typescript-repos/satnaing__shadcn-admin
url = https://github.com/satnaing/shadcn-admin.git
[submodule "typescript-repos/RocketChat__Rocket.Chat"]
path = typescript-repos/RocketChat__Rocket.Chat
url = https://github.com/RocketChat/Rocket.Chat.git
[submodule "typescript-repos/PlasmoHQ__plasmo"]
path = typescript-repos/PlasmoHQ__plasmo
url = https://github.com/PlasmoHQ/plasmo.git
[submodule "typescript-repos/petyosi__react-virtuoso"]
path = typescript-repos/petyosi__react-virtuoso
url = https://github.com/petyosi/react-virtuoso.git
[submodule "typescript-repos/remotion-dev__remotion"]
path = typescript-repos/remotion-dev__remotion
url = https://github.com/remotion-dev/remotion.git
[submodule "typescript-repos/different-ai__openwork"]
path = typescript-repos/different-ai__openwork
url = https://github.com/different-ai/openwork.git
[submodule "typescript-repos/langgenius__dify"]
path = typescript-repos/langgenius__dify
url = https://github.com/langgenius/dify.git
[submodule "typescript-repos/anomalyco__opencode"]
path = typescript-repos/anomalyco__opencode
url = https://github.com/anomalyco/opencode.git
[submodule "typescript-repos/dotansimha__graphql-code-generator"]
path = typescript-repos/dotansimha__graphql-code-generator
url = https://github.com/dotansimha/graphql-code-generator.git
[submodule "typescript-repos/sadmann7__tablecn"]
path = typescript-repos/sadmann7__tablecn
url = https://github.com/sadmann7/tablecn.git
[submodule "typescript-repos/redis__RedisInsight"]
path = typescript-repos/redis__RedisInsight
url = https://github.com/redis/RedisInsight.git
[submodule "typescript-repos/alibaba__x-render"]
path = typescript-repos/alibaba__x-render
url = https://github.com/alibaba/x-render.git
[submodule "typescript-repos/gristlabs__grist-core"]
path = typescript-repos/gristlabs__grist-core
url = https://github.com/gristlabs/grist-core.git
[submodule "typescript-repos/microsoft__playwright"]
path = typescript-repos/microsoft__playwright
url = https://github.com/microsoft/playwright.git
[submodule "typescript-repos/supabase__supabase"]
path = typescript-repos/supabase__supabase
url = https://github.com/supabase/supabase.git
[submodule "typescript-repos/hediet__vscode-debug-visualizer"]
path = typescript-repos/hediet__vscode-debug-visualizer
url = https://github.com/hediet/vscode-debug-visualizer.git
[submodule "typescript-repos/accomplish-ai__accomplish"]
path = typescript-repos/accomplish-ai__accomplish
url = https://github.com/accomplish-ai/accomplish.git
[submodule "typescript-repos/ds300__patch-package"]
path = typescript-repos/ds300__patch-package
url = https://github.com/ds300/patch-package.git
[submodule "typescript-repos/plasmicapp__plasmic"]
path = typescript-repos/plasmicapp__plasmic
url = https://github.com/plasmicapp/plasmic.git
[submodule "typescript-repos/podman-desktop__podman-desktop"]
path = typescript-repos/podman-desktop__podman-desktop
url = https://github.com/podman-desktop/podman-desktop.git
[submodule "typescript-repos/microsoft__fluentui"]
path = typescript-repos/microsoft__fluentui
url = https://github.com/microsoft/fluentui.git
[submodule "typescript-repos/ReactiveX__rxjs"]
path = typescript-repos/ReactiveX__rxjs
url = https://github.com/ReactiveX/rxjs.git
[submodule "typescript-repos/TanStack__table"]
path = typescript-repos/TanStack__table
url = https://github.com/TanStack/table.git
[submodule "typescript-repos/leon-ai__leon"]
path = typescript-repos/leon-ai__leon
url = https://github.com/leon-ai/leon.git
[submodule "typescript-repos/vadimdemedes__ink"]
path = typescript-repos/vadimdemedes__ink
url = https://github.com/vadimdemedes/ink.git
[submodule "typescript-repos/mksglu__context-mode"]
path = typescript-repos/mksglu__context-mode
url = https://github.com/mksglu/context-mode.git
[submodule "typescript-repos/readest__readest"]
path = typescript-repos/readest__readest
url = https://github.com/readest/readest.git
[submodule "typescript-repos/Kong__insomnia"]
path = typescript-repos/Kong__insomnia
url = https://github.com/Kong/insomnia.git
[submodule "typescript-repos/x-extends__vxe-table"]
path = typescript-repos/x-extends__vxe-table
url = https://github.com/x-extends/vxe-table.git
[submodule "typescript-repos/codesandbox__sandpack"]
path = typescript-repos/codesandbox__sandpack
url = https://github.com/codesandbox/sandpack.git
[submodule "typescript-repos/danilowoz__react-content-loader"]
path = typescript-repos/danilowoz__react-content-loader
url = https://github.com/danilowoz/react-content-loader.git
[submodule "typescript-repos/jquery__esprima"]
path = typescript-repos/jquery__esprima
url = https://github.com/jquery/esprima.git
[submodule "typescript-repos/upscayl__upscayl"]
path = typescript-repos/upscayl__upscayl
url = https://github.com/upscayl/upscayl.git
[submodule "typescript-repos/fluxerapp__fluxer"]
path = typescript-repos/fluxerapp__fluxer
url = https://github.com/fluxerapp/fluxer.git
[submodule "typescript-repos/mermaid-js__mermaid"]
path = typescript-repos/mermaid-js__mermaid
url = https://github.com/mermaid-js/mermaid.git
[submodule "typescript-repos/humanlayer__humanlayer"]
path = typescript-repos/humanlayer__humanlayer
url = https://github.com/humanlayer/humanlayer.git
[submodule "typescript-repos/airbnb__visx"]
path = typescript-repos/airbnb__visx
url = https://github.com/airbnb/visx.git
[submodule "typescript-repos/github__copilot-sdk"]
path = typescript-repos/github__copilot-sdk
url = https://github.com/github/copilot-sdk.git
[submodule "typescript-repos/bcakmakoglu__vue-flow"]
path = typescript-repos/bcakmakoglu__vue-flow
url = https://github.com/bcakmakoglu/vue-flow.git
[submodule "typescript-repos/any86__any-rule"]
path = typescript-repos/any86__any-rule
url = https://github.com/any86/any-rule.git
[submodule "typescript-repos/iOfficeAI__AionUi"]
path = typescript-repos/iOfficeAI__AionUi
url = https://github.com/iOfficeAI/AionUi.git
[submodule "typescript-repos/nexmoe__VidBee"]
path = typescript-repos/nexmoe__VidBee
url = https://github.com/nexmoe/VidBee.git
[submodule "typescript-repos/ionic-team__ionicons"]
path = typescript-repos/ionic-team__ionicons
url = https://github.com/ionic-team/ionicons.git
[submodule "typescript-repos/cooderl__wewe-rss"]
path = typescript-repos/cooderl__wewe-rss
url = https://github.com/cooderl/wewe-rss.git
[submodule "typescript-repos/apitable__apitable"]
path = typescript-repos/apitable__apitable
url = https://github.com/apitable/apitable.git
[submodule "typescript-repos/subquery__subql"]
path = typescript-repos/subquery__subql
url = https://github.com/subquery/subql.git
[submodule "typescript-repos/mfts__papermark"]
path = typescript-repos/mfts__papermark
url = https://github.com/mfts/papermark.git
[submodule "typescript-repos/realworld-apps__realworld"]
path = typescript-repos/realworld-apps__realworld
url = https://github.com/realworld-apps/realworld.git
[submodule "typescript-repos/labring__sealos"]
path = typescript-repos/labring__sealos
url = https://github.com/labring/sealos.git
[submodule "typescript-repos/jeffvli__feishin"]
path = typescript-repos/jeffvli__feishin
url = https://github.com/jeffvli/feishin.git
[submodule "typescript-repos/nocodb__nocodb"]
path = typescript-repos/nocodb__nocodb
url = https://github.com/nocodb/nocodb.git
[submodule "typescript-repos/instantdb__instant"]
path = typescript-repos/instantdb__instant
url = https://github.com/instantdb/instant.git
[submodule "typescript-repos/babel__babel"]
path = typescript-repos/babel__babel
url = https://github.com/babel/babel.git
[submodule "typescript-repos/urql-graphql__urql"]
path = typescript-repos/urql-graphql__urql
url = https://github.com/urql-graphql/urql.git
[submodule "typescript-repos/taskforcesh__bullmq"]
path = typescript-repos/taskforcesh__bullmq
url = https://github.com/taskforcesh/bullmq.git
[submodule "typescript-repos/isaacs__node-glob"]
path = typescript-repos/isaacs__node-glob
url = https://github.com/isaacs/node-glob.git
[submodule "typescript-repos/lukilabs__beautiful-mermaid"]
path = typescript-repos/lukilabs__beautiful-mermaid
url = https://github.com/lukilabs/beautiful-mermaid.git
[submodule "typescript-repos/elastic__eui"]
path = typescript-repos/elastic__eui
url = https://github.com/elastic/eui.git
[submodule "typescript-repos/zu1k__book-searcher"]
path = typescript-repos/zu1k__book-searcher
url = https://github.com/zu1k/book-searcher.git
[submodule "typescript-repos/helmetjs__helmet"]
path = typescript-repos/helmetjs__helmet
url = https://github.com/helmetjs/helmet.git
[submodule "typescript-repos/standardnotes__app"]
path = typescript-repos/standardnotes__app
url = https://github.com/standardnotes/app.git
[submodule "typescript-repos/TypeStrong__typedoc"]
path = typescript-repos/TypeStrong__typedoc
url = https://github.com/TypeStrong/typedoc.git
[submodule "typescript-repos/HumanSignal__label-studio"]
path = typescript-repos/HumanSignal__label-studio
url = https://github.com/HumanSignal/label-studio.git
[submodule "typescript-repos/fabricjs__fabric.js"]
path = typescript-repos/fabricjs__fabric.js
url = https://github.com/fabricjs/fabric.js.git
[submodule "typescript-repos/ryoppippi__ccusage"]
path = typescript-repos/ryoppippi__ccusage
url = https://github.com/ryoppippi/ccusage.git
[submodule "typescript-repos/QwikDev__qwik"]
path = typescript-repos/QwikDev__qwik
url = https://github.com/QwikDev/qwik.git
[submodule "typescript-repos/inversify__InversifyJS"]
path = typescript-repos/inversify__InversifyJS
url = https://github.com/inversify/InversifyJS.git
[submodule "typescript-repos/microsoft__SandDance"]
path = typescript-repos/microsoft__SandDance
url = https://github.com/microsoft/SandDance.git
[submodule "typescript-repos/dubinc__dub"]
path = typescript-repos/dubinc__dub
url = https://github.com/dubinc/dub.git
[submodule "typescript-repos/mobxjs__mobx"]
path = typescript-repos/mobxjs__mobx
url = https://github.com/mobxjs/mobx.git
[submodule "typescript-repos/reactchartjs__react-chartjs-2"]
path = typescript-repos/reactchartjs__react-chartjs-2
url = https://github.com/reactchartjs/react-chartjs-2.git
[submodule "typescript-repos/docmost__docmost"]
path = typescript-repos/docmost__docmost
url = https://github.com/docmost/docmost.git
[submodule "typescript-repos/lit__lit"]
path = typescript-repos/lit__lit
url = https://github.com/lit/lit.git
[submodule "typescript-repos/apache__echarts"]
path = typescript-repos/apache__echarts
url = https://github.com/apache/echarts.git
[submodule "typescript-repos/openblocks-dev__openblocks"]
path = typescript-repos/openblocks-dev__openblocks
url = https://github.com/openblocks-dev/openblocks.git
[submodule "typescript-repos/plouc__nivo"]
path = typescript-repos/plouc__nivo
url = https://github.com/plouc/nivo.git
[submodule "typescript-repos/type-challenges__type-challenges"]
path = typescript-repos/type-challenges__type-challenges
url = https://github.com/type-challenges/type-challenges.git
[submodule "typescript-repos/codexu__note-gen"]
path = typescript-repos/codexu__note-gen
url = https://github.com/codexu/note-gen.git
[submodule "typescript-repos/anthropics__claude-code-action"]
path = typescript-repos/anthropics__claude-code-action
url = https://github.com/anthropics/claude-code-action.git
[submodule "typescript-repos/jlfwong__speedscope"]
path = typescript-repos/jlfwong__speedscope
url = https://github.com/jlfwong/speedscope.git
[submodule "typescript-repos/vercel__micro"]
path = typescript-repos/vercel__micro
url = https://github.com/vercel/micro.git
[submodule "typescript-repos/slidevjs__slidev"]
path = typescript-repos/slidevjs__slidev
url = https://github.com/slidevjs/slidev.git
[submodule "typescript-repos/Lum1104__Understand-Anything"]
path = typescript-repos/Lum1104__Understand-Anything
url = https://github.com/Lum1104/Understand-Anything.git
[submodule "typescript-repos/EcoPasteHub__EcoPaste"]
path = typescript-repos/EcoPasteHub__EcoPaste
url = https://github.com/EcoPasteHub/EcoPaste.git
[submodule "typescript-repos/xyflow__xyflow"]
path = typescript-repos/xyflow__xyflow
url = https://github.com/xyflow/xyflow.git
[submodule "typescript-repos/yang991178__fluent-reader"]
path = typescript-repos/yang991178__fluent-reader
url = https://github.com/yang991178/fluent-reader.git
[submodule "typescript-repos/microsoft__vscode-extension-samples"]
path = typescript-repos/microsoft__vscode-extension-samples
url = https://github.com/microsoft/vscode-extension-samples.git
[submodule "typescript-repos/umami-software__umami"]
path = typescript-repos/umami-software__umami
url = https://github.com/umami-software/umami.git
[submodule "typescript-repos/elysiajs__elysia"]
path = typescript-repos/elysiajs__elysia
url = https://github.com/elysiajs/elysia.git
[submodule "typescript-repos/adobe__react-spectrum"]
path = typescript-repos/adobe__react-spectrum
url = https://github.com/adobe/react-spectrum.git
[submodule "typescript-repos/blinkospace__blinko"]
path = typescript-repos/blinkospace__blinko
url = https://github.com/blinkospace/blinko.git
[submodule "typescript-repos/usablica__intro.js"]
path = typescript-repos/usablica__intro.js
url = https://github.com/usablica/intro.js.git
[submodule "typescript-repos/CyberTimon__RapidRAW"]
path = typescript-repos/CyberTimon__RapidRAW
url = https://github.com/CyberTimon/RapidRAW.git
[submodule "typescript-repos/JedWatson__react-select"]
path = typescript-repos/JedWatson__react-select
url = https://github.com/JedWatson/react-select.git
[submodule "typescript-repos/apollographql__apollo-client"]
path = typescript-repos/apollographql__apollo-client
url = https://github.com/apollographql/apollo-client.git
[submodule "typescript-repos/vercel-labs__portless"]
path = typescript-repos/vercel-labs__portless
url = https://github.com/vercel-labs/portless.git
[submodule "typescript-repos/RooCodeInc__Roo-Code"]
path = typescript-repos/RooCodeInc__Roo-Code
url = https://github.com/RooCodeInc/Roo-Code.git
[submodule "typescript-repos/Effect-TS__effect"]
path = typescript-repos/Effect-TS__effect
url = https://github.com/Effect-TS/effect.git
[submodule "typescript-repos/onlook-dev__onlook"]
path = typescript-repos/onlook-dev__onlook
url = https://github.com/onlook-dev/onlook.git
[submodule "typescript-repos/honojs__hono"]
path = typescript-repos/honojs__hono
url = https://github.com/honojs/hono.git
[submodule "typescript-repos/googleapis__release-please"]
path = typescript-repos/googleapis__release-please
url = https://github.com/googleapis/release-please.git
[submodule "typescript-repos/GitbookIO__gitbook"]
path = typescript-repos/GitbookIO__gitbook
url = https://github.com/GitbookIO/gitbook.git
[submodule "typescript-repos/garrytan__gstack"]
path = typescript-repos/garrytan__gstack
url = https://github.com/garrytan/gstack.git
[submodule "typescript-repos/zhongsp__TypeScript"]
path = typescript-repos/zhongsp__TypeScript
url = https://github.com/zhongsp/TypeScript.git
[submodule "typescript-repos/chaitin__PandaWiki"]
path = typescript-repos/chaitin__PandaWiki
url = https://github.com/chaitin/PandaWiki.git
[submodule "typescript-repos/boringdesigners__boring-avatars"]
path = typescript-repos/boringdesigners__boring-avatars
url = https://github.com/boringdesigners/boring-avatars.git
[submodule "typescript-repos/graphql-hive__graphql-yoga"]
path = typescript-repos/graphql-hive__graphql-yoga
url = https://github.com/graphql-hive/graphql-yoga.git
[submodule "typescript-repos/payloadcms__payload"]
path = typescript-repos/payloadcms__payload
url = https://github.com/payloadcms/payload.git
[submodule "typescript-repos/dexie__Dexie.js"]
path = typescript-repos/dexie__Dexie.js
url = https://github.com/dexie/Dexie.js.git
[submodule "typescript-repos/reduxjs__redux-toolkit"]
path = typescript-repos/reduxjs__redux-toolkit
url = https://github.com/reduxjs/redux-toolkit.git
[submodule "typescript-repos/ruvnet__ruflo"]
path = typescript-repos/ruvnet__ruflo
url = https://github.com/ruvnet/ruflo.git
[submodule "typescript-repos/angular__angularfire"]
path = typescript-repos/angular__angularfire
url = https://github.com/angular/angularfire.git
[submodule "typescript-repos/windingwind__zotero-better-notes"]
path = typescript-repos/windingwind__zotero-better-notes
url = https://github.com/windingwind/zotero-better-notes.git
[submodule "typescript-repos/ryo-ma__github-profile-trophy"]
path = typescript-repos/ryo-ma__github-profile-trophy
url = https://github.com/ryo-ma/github-profile-trophy.git
[submodule "typescript-repos/joe-bell__cva"]
path = typescript-repos/joe-bell__cva
url = https://github.com/joe-bell/cva.git
[submodule "typescript-repos/stenciljs__core"]
path = typescript-repos/stenciljs__core
url = https://github.com/stenciljs/core.git
[submodule "typescript-repos/raycast__extensions"]
path = typescript-repos/raycast__extensions
url = https://github.com/raycast/extensions.git
[submodule "typescript-repos/chakra-ui__panda"]
path = typescript-repos/chakra-ui__panda
url = https://github.com/chakra-ui/panda.git
[submodule "typescript-repos/ItzCrazyKns__Vane"]
path = typescript-repos/ItzCrazyKns__Vane
url = https://github.com/ItzCrazyKns/Vane.git
[submodule "typescript-repos/element-plus__element-plus"]
path = typescript-repos/element-plus__element-plus
url = https://github.com/element-plus/element-plus.git
[submodule "typescript-repos/coaidev__coai"]
path = typescript-repos/coaidev__coai
url = https://github.com/coaidev/coai.git
[submodule "typescript-repos/ag-ui-protocol__ag-ui"]
path = typescript-repos/ag-ui-protocol__ag-ui
url = https://github.com/ag-ui-protocol/ag-ui.git
[submodule "typescript-repos/resend__react-email"]
path = typescript-repos/resend__react-email
url = https://github.com/resend/react-email.git
[submodule "typescript-repos/EveryInc__compound-engineering-plugin"]
path = typescript-repos/EveryInc__compound-engineering-plugin
url = https://github.com/EveryInc/compound-engineering-plugin.git
[submodule "typescript-repos/activepieces__activepieces"]
path = typescript-repos/activepieces__activepieces
url = https://github.com/activepieces/activepieces.git
[submodule "typescript-repos/antvis__G6"]
path = typescript-repos/antvis__G6
url = https://github.com/antvis/G6.git
[submodule "typescript-repos/lyswhut__lx-music-desktop"]
path = typescript-repos/lyswhut__lx-music-desktop
url = https://github.com/lyswhut/lx-music-desktop.git
[submodule "typescript-repos/katspaugh__wavesurfer.js"]
path = typescript-repos/katspaugh__wavesurfer.js
url = https://github.com/katspaugh/wavesurfer.js.git
[submodule "typescript-repos/microsoft__TypeScript"]
path = typescript-repos/microsoft__TypeScript
url = https://github.com/microsoft/TypeScript.git
[submodule "typescript-repos/Budibase__budibase"]
path = typescript-repos/Budibase__budibase
url = https://github.com/Budibase/budibase.git
[submodule "typescript-repos/Vencord__Vesktop"]
path = typescript-repos/Vencord__Vesktop
url = https://github.com/Vencord/Vesktop.git
[submodule "typescript-repos/microsoft__TypeChat"]
path = typescript-repos/microsoft__TypeChat
url = https://github.com/microsoft/TypeChat.git
[submodule "typescript-repos/graphql__graphiql"]
path = typescript-repos/graphql__graphiql
url = https://github.com/graphql/graphiql.git
[submodule "typescript-repos/richards199999__Thinking-Claude"]
path = typescript-repos/richards199999__Thinking-Claude
url = https://github.com/richards199999/Thinking-Claude.git
[submodule "typescript-repos/Yeachan-Heo__oh-my-claudecode"]
path = typescript-repos/Yeachan-Heo__oh-my-claudecode
url = https://github.com/Yeachan-Heo/oh-my-claudecode.git
[submodule "typescript-repos/whyour__qinglong"]
path = typescript-repos/whyour__qinglong
url = https://github.com/whyour/qinglong.git
[submodule "typescript-repos/AykutSarac__jsoncrack.com"]
path = typescript-repos/AykutSarac__jsoncrack.com
url = https://github.com/AykutSarac/jsoncrack.com.git
[submodule "typescript-repos/fullcalendar__fullcalendar"]
path = typescript-repos/fullcalendar__fullcalendar
url = https://github.com/fullcalendar/fullcalendar.git
[submodule "typescript-repos/javascript-obfuscator__javascript-obfuscator"]
path = typescript-repos/javascript-obfuscator__javascript-obfuscator
url = https://github.com/javascript-obfuscator/javascript-obfuscator.git
[submodule "typescript-repos/jhipster__generator-jhipster"]
path = typescript-repos/jhipster__generator-jhipster
url = https://github.com/jhipster/generator-jhipster.git
[submodule "typescript-repos/getumbrel__umbrel"]
path = typescript-repos/getumbrel__umbrel
url = https://github.com/getumbrel/umbrel.git
[submodule "typescript-repos/tonyantony300__alt-sendme"]
path = typescript-repos/tonyantony300__alt-sendme
url = https://github.com/tonyantony300/alt-sendme.git
[submodule "typescript-repos/openstatusHQ__openstatus"]
path = typescript-repos/openstatusHQ__openstatus
url = https://github.com/openstatusHQ/openstatus.git
[submodule "typescript-repos/upstash__context7"]
path = typescript-repos/upstash__context7
url = https://github.com/upstash/context7.git
[submodule "typescript-repos/foambubble__foam"]
path = typescript-repos/foambubble__foam
url = https://github.com/foambubble/foam.git
[submodule "typescript-repos/Dokploy__dokploy"]
path = typescript-repos/Dokploy__dokploy
url = https://github.com/Dokploy/dokploy.git
[submodule "typescript-repos/anomalyco__openauth"]
path = typescript-repos/anomalyco__openauth
url = https://github.com/anomalyco/openauth.git
[submodule "typescript-repos/vercel__ai"]
path = typescript-repos/vercel__ai
url = https://github.com/vercel/ai.git
[submodule "typescript-repos/Shopify__react-native-skia"]
path = typescript-repos/Shopify__react-native-skia
url = https://github.com/Shopify/react-native-skia.git
[submodule "typescript-repos/recharts__recharts"]
path = typescript-repos/recharts__recharts
url = https://github.com/recharts/recharts.git
[submodule "typescript-repos/evershopcommerce__evershop"]
path = typescript-repos/evershopcommerce__evershop
url = https://github.com/evershopcommerce/evershop.git
[submodule "typescript-repos/arktypeio__arktype"]
path = typescript-repos/arktypeio__arktype
url = https://github.com/arktypeio/arktype.git
[submodule "typescript-repos/emberjs__ember.js"]
path = typescript-repos/emberjs__ember.js
url = https://github.com/emberjs/ember.js.git
[submodule "typescript-repos/Kilo-Org__kilocode"]
path = typescript-repos/Kilo-Org__kilocode
url = https://github.com/Kilo-Org/kilocode.git
[submodule "typescript-repos/devlikeapro__waha"]
path = typescript-repos/devlikeapro__waha
url = https://github.com/devlikeapro/waha.git
[submodule "typescript-repos/barvian__number-flow"]
path = typescript-repos/barvian__number-flow
url = https://github.com/barvian/number-flow.git
[submodule "typescript-repos/electron__forge"]
path = typescript-repos/electron__forge
url = https://github.com/electron/forge.git
[submodule "typescript-repos/DayuanJiang__next-ai-draw-io"]
path = typescript-repos/DayuanJiang__next-ai-draw-io
url = https://github.com/DayuanJiang/next-ai-draw-io.git
[submodule "typescript-repos/vercel__satori"]
path = typescript-repos/vercel__satori
url = https://github.com/vercel/satori.git
[submodule "typescript-repos/alan2207__bulletproof-react"]
path = typescript-repos/alan2207__bulletproof-react
url = https://github.com/alan2207/bulletproof-react.git
[submodule "typescript-repos/uuidjs__uuid"]
path = typescript-repos/uuidjs__uuid
url = https://github.com/uuidjs/uuid.git
[submodule "typescript-repos/webdriverio__webdriverio"]
path = typescript-repos/webdriverio__webdriverio
url = https://github.com/webdriverio/webdriverio.git
[submodule "typescript-repos/supermemoryai__supermemory"]
path = typescript-repos/supermemoryai__supermemory
url = https://github.com/supermemoryai/supermemory.git
[submodule "typescript-repos/wechaty__wechaty"]
path = typescript-repos/wechaty__wechaty
url = https://github.com/wechaty/wechaty.git
[submodule "typescript-repos/chartist-js__chartist"]
path = typescript-repos/chartist-js__chartist
url = https://github.com/chartist-js/chartist.git
[submodule "typescript-repos/bluesky-social__social-app"]
path = typescript-repos/bluesky-social__social-app
url = https://github.com/bluesky-social/social-app.git
[submodule "typescript-repos/buildship-ai__rowy"]
path = typescript-repos/buildship-ai__rowy
url = https://github.com/buildship-ai/rowy.git
[submodule "typescript-repos/refly-ai__refly"]
path = typescript-repos/refly-ai__refly
url = https://github.com/refly-ai/refly.git
[submodule "typescript-repos/virattt__dexter"]
path = typescript-repos/virattt__dexter
url = https://github.com/virattt/dexter.git
[submodule "typescript-repos/nhn__tui.calendar"]
path = typescript-repos/nhn__tui.calendar
url = https://github.com/nhn/tui.calendar.git
[submodule "typescript-repos/xushengfeng__eSearch"]
path = typescript-repos/xushengfeng__eSearch
url = https://github.com/xushengfeng/eSearch.git
[submodule "typescript-repos/slopus__happy"]
path = typescript-repos/slopus__happy
url = https://github.com/slopus/happy.git
[submodule "typescript-repos/Automattic__wp-calypso"]
path = typescript-repos/Automattic__wp-calypso
url = https://github.com/Automattic/wp-calypso.git
[submodule "typescript-repos/sass__sass"]
path = typescript-repos/sass__sass
url = https://github.com/sass/sass.git
[submodule "typescript-repos/eclipse-theia__theia"]
path = typescript-repos/eclipse-theia__theia
url = https://github.com/eclipse-theia/theia.git
[submodule "typescript-repos/juliencrn__usehooks-ts"]
path = typescript-repos/juliencrn__usehooks-ts
url = https://github.com/juliencrn/usehooks-ts.git
[submodule "typescript-repos/expo__expo"]
path = typescript-repos/expo__expo
url = https://github.com/expo/expo.git
[submodule "typescript-repos/react-navigation__react-navigation"]
path = typescript-repos/react-navigation__react-navigation
url = https://github.com/react-navigation/react-navigation.git
[submodule "typescript-repos/ecomfe__vue-echarts"]
path = typescript-repos/ecomfe__vue-echarts
url = https://github.com/ecomfe/vue-echarts.git
[submodule "typescript-repos/vuejs__language-tools"]
path = typescript-repos/vuejs__language-tools
url = https://github.com/vuejs/language-tools.git
[submodule "typescript-repos/yamadashy__repomix"]
path = typescript-repos/yamadashy__repomix
url = https://github.com/yamadashy/repomix.git
[submodule "typescript-repos/karakeep-app__karakeep"]
path = typescript-repos/karakeep-app__karakeep
url = https://github.com/karakeep-app/karakeep.git
[submodule "typescript-repos/elastic__kibana"]
path = typescript-repos/elastic__kibana
url = https://github.com/elastic/kibana.git
[submodule "typescript-repos/unocss__unocss"]
path = typescript-repos/unocss__unocss
url = https://github.com/unocss/unocss.git
[submodule "typescript-repos/shardeum__shardeum"]
path = typescript-repos/shardeum__shardeum
url = https://github.com/shardeum/shardeum.git
[submodule "typescript-repos/OneUptime__oneuptime"]
path = typescript-repos/OneUptime__oneuptime
url = https://github.com/OneUptime/oneuptime.git
[submodule "typescript-repos/FlowiseAI__Flowise"]
path = typescript-repos/FlowiseAI__Flowise
url = https://github.com/FlowiseAI/Flowise.git
[submodule "typescript-repos/carloscuesta__gitmoji"]
path = typescript-repos/carloscuesta__gitmoji
url = https://github.com/carloscuesta/gitmoji.git
[submodule "typescript-repos/akveo__nebular"]
path = typescript-repos/akveo__nebular
url = https://github.com/akveo/nebular.git
[submodule "typescript-repos/sb2nov__mac-setup"]
path = typescript-repos/sb2nov__mac-setup
url = https://github.com/sb2nov/mac-setup.git
[submodule "typescript-repos/puppeteer__puppeteer"]
path = typescript-repos/puppeteer__puppeteer
url = https://github.com/puppeteer/puppeteer.git
[submodule "typescript-repos/jaredpalmer__formik"]
path = typescript-repos/jaredpalmer__formik
url = https://github.com/jaredpalmer/formik.git
[submodule "typescript-repos/reduxjs__react-redux"]
path = typescript-repos/reduxjs__react-redux
url = https://github.com/reduxjs/react-redux.git
[submodule "typescript-repos/sismo-core__sismo-badges"]
path = typescript-repos/sismo-core__sismo-badges
url = https://github.com/sismo-core/sismo-badges.git
[submodule "typescript-repos/purocean__yn"]
path = typescript-repos/purocean__yn
url = https://github.com/purocean/yn.git
[submodule "typescript-repos/abhivaikar__howtheytest"]
path = typescript-repos/abhivaikar__howtheytest
url = https://github.com/abhivaikar/howtheytest.git
[submodule "typescript-repos/google-gemini__gemini-cli"]
path = typescript-repos/google-gemini__gemini-cli
url = https://github.com/google-gemini/gemini-cli.git
[submodule "typescript-repos/BetterDiscord__BetterDiscord"]
path = typescript-repos/BetterDiscord__BetterDiscord
url = https://github.com/BetterDiscord/BetterDiscord.git
[submodule "typescript-repos/giscus__giscus"]
path = typescript-repos/giscus__giscus
url = https://github.com/giscus/giscus.git
[submodule "typescript-repos/webpro-nl__knip"]
path = typescript-repos/webpro-nl__knip
url = https://github.com/webpro-nl/knip.git
[submodule "typescript-repos/SawyerHood__draw-a-ui"]
path = typescript-repos/SawyerHood__draw-a-ui
url = https://github.com/SawyerHood/draw-a-ui.git
[submodule "typescript-repos/moeru-ai__airi"]
path = typescript-repos/moeru-ai__airi
url = https://github.com/moeru-ai/airi.git
[submodule "typescript-repos/dip__cmdk"]
path = typescript-repos/dip__cmdk
url = https://github.com/dip/cmdk.git
[submodule "typescript-repos/czlonkowski__n8n-mcp"]
path = typescript-repos/czlonkowski__n8n-mcp
url = https://github.com/czlonkowski/n8n-mcp.git
[submodule "typescript-repos/massCodeIO__massCode"]
path = typescript-repos/massCodeIO__massCode
url = https://github.com/massCodeIO/massCode.git
[submodule "typescript-repos/mastra-ai__mastra"]
path = typescript-repos/mastra-ai__mastra
url = https://github.com/mastra-ai/mastra.git
[submodule "typescript-repos/soybeanjs__soybean-admin"]
path = typescript-repos/soybeanjs__soybean-admin
url = https://github.com/soybeanjs/soybean-admin.git
[submodule "typescript-repos/srbhr__Resume-Matcher"]
path = typescript-repos/srbhr__Resume-Matcher
url = https://github.com/srbhr/Resume-Matcher.git
[submodule "typescript-repos/kubernetes-sigs__headlamp"]
path = typescript-repos/kubernetes-sigs__headlamp
url = https://github.com/kubernetes-sigs/headlamp.git
[submodule "typescript-repos/MichalLytek__type-graphql"]
path = typescript-repos/MichalLytek__type-graphql
url = https://github.com/MichalLytek/type-graphql.git
[submodule "typescript-repos/stagewise-io__stagewise"]
path = typescript-repos/stagewise-io__stagewise
url = https://github.com/stagewise-io/stagewise.git
[submodule "typescript-repos/metricsgraphics__metrics-graphics"]
path = typescript-repos/metricsgraphics__metrics-graphics
url = https://github.com/metricsgraphics/metrics-graphics.git
[submodule "typescript-repos/microsoft__inshellisense"]
path = typescript-repos/microsoft__inshellisense
url = https://github.com/microsoft/inshellisense.git
[submodule "typescript-repos/modelcontextprotocol__inspector"]
path = typescript-repos/modelcontextprotocol__inspector
url = https://github.com/modelcontextprotocol/inspector.git
[submodule "typescript-repos/openreplay__openreplay"]
path = typescript-repos/openreplay__openreplay
url = https://github.com/openreplay/openreplay.git
[submodule "typescript-repos/thelounge__thelounge"]
path = typescript-repos/thelounge__thelounge
url = https://github.com/thelounge/thelounge.git
[submodule "typescript-repos/OutlineFoundation__outline-apps"]
path = typescript-repos/OutlineFoundation__outline-apps
url = https://github.com/OutlineFoundation/outline-apps.git
[submodule "typescript-repos/ixartz__Next-js-Boilerplate"]
path = typescript-repos/ixartz__Next-js-Boilerplate
url = https://github.com/ixartz/Next-js-Boilerplate.git
[submodule "typescript-repos/ant-design__ant-design"]
path = typescript-repos/ant-design__ant-design
url = https://github.com/ant-design/ant-design.git
[submodule "typescript-repos/pear-devs__pear-desktop"]
path = typescript-repos/pear-devs__pear-desktop
url = https://github.com/pear-devs/pear-desktop.git
[submodule "typescript-repos/photoview__photoview"]
path = typescript-repos/photoview__photoview
url = https://github.com/photoview/photoview.git
[submodule "typescript-repos/feathersjs__feathers"]
path = typescript-repos/feathersjs__feathers
url = https://github.com/feathersjs/feathers.git
[submodule "typescript-repos/KeygraphHQ__shannon"]
path = typescript-repos/KeygraphHQ__shannon
url = https://github.com/KeygraphHQ/shannon.git
[submodule "typescript-repos/withastro__starlight"]
path = typescript-repos/withastro__starlight
url = https://github.com/withastro/starlight.git
[submodule "typescript-repos/BrainJS__brain.js"]
path = typescript-repos/BrainJS__brain.js
url = https://github.com/BrainJS/brain.js.git
[submodule "typescript-repos/xtermjs__xterm.js"]
path = typescript-repos/xtermjs__xterm.js
url = https://github.com/xtermjs/xterm.js.git
[submodule "typescript-repos/thedotmack__claude-mem"]
path = typescript-repos/thedotmack__claude-mem
url = https://github.com/thedotmack/claude-mem.git
[submodule "typescript-repos/supermacro__neverthrow"]
path = typescript-repos/supermacro__neverthrow
url = https://github.com/supermacro/neverthrow.git
[submodule "typescript-repos/assistant-ui__assistant-ui"]
path = typescript-repos/assistant-ui__assistant-ui
url = https://github.com/assistant-ui/assistant-ui.git
[submodule "typescript-repos/streetwriters__notesnook"]
path = typescript-repos/streetwriters__notesnook
url = https://github.com/streetwriters/notesnook.git
[submodule "typescript-repos/continuedev__continue"]
path = typescript-repos/continuedev__continue
url = https://github.com/continuedev/continue.git
[submodule "typescript-repos/hicccc77__WeFlow"]
path = typescript-repos/hicccc77__WeFlow
url = https://github.com/hicccc77/WeFlow.git
[submodule "typescript-repos/shoelace-style__shoelace"]
path = typescript-repos/shoelace-style__shoelace
url = https://github.com/shoelace-style/shoelace.git
[submodule "typescript-repos/ng-bootstrap__ng-bootstrap"]
path = typescript-repos/ng-bootstrap__ng-bootstrap
url = https://github.com/ng-bootstrap/ng-bootstrap.git
[submodule "typescript-repos/typehero__typehero"]
path = typescript-repos/typehero__typehero
url = https://github.com/typehero/typehero.git
[submodule "typescript-repos/trpc__trpc"]
path = typescript-repos/trpc__trpc
url = https://github.com/trpc/trpc.git
[submodule "typescript-repos/SteamDeckHomebrew__decky-loader"]
path = typescript-repos/SteamDeckHomebrew__decky-loader
url = https://github.com/SteamDeckHomebrew/decky-loader.git
[submodule "typescript-repos/wei__pull"]
path = typescript-repos/wei__pull
url = https://github.com/wei/pull.git
[submodule "typescript-repos/DefinitelyTyped__DefinitelyTyped"]
path = typescript-repos/DefinitelyTyped__DefinitelyTyped
url = https://github.com/DefinitelyTyped/DefinitelyTyped.git
[submodule "typescript-repos/styled-components__styled-components"]
path = typescript-repos/styled-components__styled-components
url = https://github.com/styled-components/styled-components.git
[submodule "typescript-repos/mlc-ai__web-llm"]
path = typescript-repos/mlc-ai__web-llm
url = https://github.com/mlc-ai/web-llm.git
[submodule "typescript-repos/miurla__morphic"]
path = typescript-repos/miurla__morphic
url = https://github.com/miurla/morphic.git
[submodule "typescript-repos/koala73__worldmonitor"]
path = typescript-repos/koala73__worldmonitor
url = https://github.com/koala73/worldmonitor.git
[submodule "typescript-repos/Tonejs__Tone.js"]
path = typescript-repos/Tonejs__Tone.js
url = https://github.com/Tonejs/Tone.js.git
[submodule "typescript-repos/wakujs__waku"]
path = typescript-repos/wakujs__waku
url = https://github.com/wakujs/waku.git
[submodule "typescript-repos/microsoft__vscode"]
path = typescript-repos/microsoft__vscode
url = https://github.com/microsoft/vscode.git
[submodule "typescript-repos/renovatebot__renovate"]
path = typescript-repos/renovatebot__renovate
url = https://github.com/renovatebot/renovate.git
[submodule "typescript-repos/web-infra-dev__midscene"]
path = typescript-repos/web-infra-dev__midscene
url = https://github.com/web-infra-dev/midscene.git
[submodule "typescript-repos/mayooear__ai-pdf-chatbot-langchain"]
path = typescript-repos/mayooear__ai-pdf-chatbot-langchain
url = https://github.com/mayooear/ai-pdf-chatbot-langchain.git
[submodule "typescript-repos/ComposioHQ__composio"]
path = typescript-repos/ComposioHQ__composio
url = https://github.com/ComposioHQ/composio.git
[submodule "typescript-repos/microsoft__rushstack"]
path = typescript-repos/microsoft__rushstack
url = https://github.com/microsoft/rushstack.git
[submodule "typescript-repos/snabbdom__snabbdom"]
path = typescript-repos/snabbdom__snabbdom
url = https://github.com/snabbdom/snabbdom.git
[submodule "typescript-repos/webiny__webiny-js"]
path = typescript-repos/webiny__webiny-js
url = https://github.com/webiny/webiny-js.git
[submodule "typescript-repos/pnpm__pnpm"]
path = typescript-repos/pnpm__pnpm
url = https://github.com/pnpm/pnpm.git
[submodule "typescript-repos/conwnet__github1s"]
path = typescript-repos/conwnet__github1s
url = https://github.com/conwnet/github1s.git
[submodule "typescript-repos/gitroomhq__postiz-app"]
path = typescript-repos/gitroomhq__postiz-app
url = https://github.com/gitroomhq/postiz-app.git
[submodule "typescript-repos/FormidableLabs__spectacle"]
path = typescript-repos/FormidableLabs__spectacle
url = https://github.com/FormidableLabs/spectacle.git
[submodule "typescript-repos/strapi__strapi"]
path = typescript-repos/strapi__strapi
url = https://github.com/strapi/strapi.git
[submodule "typescript-repos/compiler-explorer__compiler-explorer"]
path = typescript-repos/compiler-explorer__compiler-explorer
url = https://github.com/compiler-explorer/compiler-explorer.git
[submodule "typescript-repos/vitest-dev__vitest"]
path = typescript-repos/vitest-dev__vitest
url = https://github.com/vitest-dev/vitest.git
[submodule "typescript-repos/responsively-org__responsively-app"]
path = typescript-repos/responsively-org__responsively-app
url = https://github.com/responsively-org/responsively-app.git
[submodule "typescript-repos/n8n-io__n8n"]
path = typescript-repos/n8n-io__n8n
url = https://github.com/n8n-io/n8n.git
[submodule "typescript-repos/adonisjs__core"]
path = typescript-repos/adonisjs__core
url = https://github.com/adonisjs/core.git
[submodule "typescript-repos/ChatGPTNextWeb__NextChat"]
path = typescript-repos/ChatGPTNextWeb__NextChat
url = https://github.com/ChatGPTNextWeb/NextChat.git
[submodule "typescript-repos/daytonaio__daytona"]
path = typescript-repos/daytonaio__daytona
url = https://github.com/daytonaio/daytona.git
[submodule "typescript-repos/rubickCenter__rubick"]
path = typescript-repos/rubickCenter__rubick
url = https://github.com/rubickCenter/rubick.git
[submodule "typescript-repos/MoonTechLab__LunaTV"]
path = typescript-repos/MoonTechLab__LunaTV
url = https://github.com/MoonTechLab/LunaTV.git
[submodule "typescript-repos/xojs__xo"]
path = typescript-repos/xojs__xo
url = https://github.com/xojs/xo.git
[submodule "typescript-repos/cs01__gdbgui"]
path = typescript-repos/cs01__gdbgui
url = https://github.com/cs01/gdbgui.git
[submodule "typescript-repos/TanStack__query"]