-
-
Notifications
You must be signed in to change notification settings - Fork 610
/
packages.json
7931 lines (7931 loc) · 404 KB
/
packages.json
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
[
"https://github.com/0111b/Conf.git",
"https://github.com/0111b/JSONDecoder-Keypath.git",
"https://github.com/0111b/UIPreview.git",
"https://github.com/0x01EAC5/HCSlider.git",
"https://github.com/0x0c/TableViewContent.git",
"https://github.com/0xacdc/XCFSodium.git",
"https://github.com/0xdeadp00l/bech32.git",
"https://github.com/0xLeif/AppDependency.git",
"https://github.com/0xLeif/AppState.git",
"https://github.com/0xLeif/Cache.git",
"https://github.com/0xLeif/Chronicle.git",
"https://github.com/0xLeif/Closure.git",
"https://github.com/0xLeif/FlatMany.git",
"https://github.com/0xLeif/Fork.git",
"https://github.com/0xLeif/KeyValueView.git",
"https://github.com/0xLeif/ObjectUI.git",
"https://github.com/0xLeif/Plugin.git",
"https://github.com/0xLeif/PluginTask.git",
"https://github.com/0xLeif/Scribe.git",
"https://github.com/0xLeif/swift-custom-dump.git",
"https://github.com/0xLeif/Task.git",
"https://github.com/0xLeif/Yarn.git",
"https://github.com/0xLet/Chain.git",
"https://github.com/0xLet/DataObject.git",
"https://github.com/0xLet/E.num.git",
"https://github.com/0xLet/MetalUI.git",
"https://github.com/0xLet/Observation.git",
"https://github.com/0xLet/SURL.git",
"https://github.com/0xLet/SwiftFu.git",
"https://github.com/0xLet/SwiftUIKit.git",
"https://github.com/0xLet/WTV.git",
"https://github.com/0xOpenBytes/c.git",
"https://github.com/0xOpenBytes/Cache.git",
"https://github.com/0xOpenBytes/CacheStore.git",
"https://github.com/0xOpenBytes/Disk.git",
"https://github.com/0xOpenBytes/FLet.git",
"https://github.com/0xOpenBytes/Network.git",
"https://github.com/0xOpenBytes/o.git",
"https://github.com/0xOpenBytes/OpenBytesNavigation.git",
"https://github.com/0xOpenBytes/t.git",
"https://github.com/0xOpenBytes/Test.git",
"https://github.com/0xWDG/Admob-SwiftUI.git",
"https://github.com/0xWDG/CachedAsyncImage.git",
"https://github.com/0xWDG/Colors.git",
"https://github.com/0xWDG/DynamicUI.git",
"https://github.com/0xWDG/GameControllerKit.git",
"https://github.com/0xWDG/Inspect.git",
"https://github.com/0xWDG/OnboardingKit.git",
"https://github.com/0xWDG/OSLogViewer.git",
"https://github.com/0xWDG/PreventScreenshot.git",
"https://github.com/0xWDG/SimpleNetworking.git",
"https://github.com/0xWDG/XCUITestHelper.git",
"https://github.com/1024jp/GzipSwift.git",
"https://github.com/1024jp/WFColorCode.git",
"https://github.com/10clouds/ParticlePullToRefresh-iOS.git",
"https://github.com/123flo321/pogoprotos-swift.git",
"https://github.com/1711-Games/LGN-Log.git",
"https://github.com/1904labs/ios-test-utils.git",
"https://github.com/1fr3dg/ResourcePackage.git",
"https://github.com/1fr3dg/SimpleEncrypter.git",
"https://github.com/1fr3dg/TextFormater.git",
"https://github.com/20tab/depthnsdictionary.git",
"https://github.com/21-DOT-DEV/swift-secp256k1.git",
"https://github.com/21GramConsulting/Beton.git",
"https://github.com/21GramConsulting/MediaType.git",
"https://github.com/2C2P/PGWSDK-SwiftPackage.git",
"https://github.com/2C2P/PGWSDKHELPER-SwiftPackage.git",
"https://github.com/2C2P/PGWUISDK-SwiftPackage.git",
"https://github.com/2C2P/SecurePaySDK-SwiftPackage.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3a4oT/IGListKit.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/3qax/swiftygfx.git",
"https://github.com/3qax/swiftyoled.git",
"https://github.com/417-72KI/MockUserDefaults.git",
"https://github.com/417-72KI/MultipartFormDataParser.git",
"https://github.com/417-72KI/StubNetworkKit.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/453jerry/FlightLog.git",
"https://github.com/453jerry/NetDiagnosis.git",
"https://github.com/453jerry/RxStoreKit.git",
"https://github.com/4rays/swift-fsrs.git",
"https://github.com/623637646/SwiftHook.git",
"https://github.com/8rightside/Resistance.git",
"https://github.com/a-sarris/KMBFormatter.git",
"https://github.com/a2/MessagePack.swift.git",
"https://github.com/a2/swift-shortcuts.git",
"https://github.com/a7ex/xcresultparser.git",
"https://github.com/aaastorga/darksky-provider.git",
"https://github.com/AAAstorga/Menkyo.git",
"https://github.com/AAChartModel/AAChartKit-Swift-Pro.git",
"https://github.com/AAChartModel/AAChartKit-Swift.git",
"https://github.com/AaronBratcher/AgileDB.git",
"https://github.com/aaronsky/asc-swift.git",
"https://github.com/aaronsky/buildkite-swift.git",
"https://github.com/aataraxiaa/ScalingCarousel.git",
"https://github.com/abadikaka/SFSymbolsFinder.git",
"https://github.com/abandy/swiftqe.git",
"https://github.com/abdel-17/swift-rational.git",
"https://github.com/abdullah-original/ExtendedDatePicker.git",
"https://github.com/abdullahselek/ASCollectionView.git",
"https://github.com/abdullahselek/Lighty.git",
"https://github.com/abdullahselek/Swifty360Player.git",
"https://github.com/abdullahselek/SwiftyMessenger.git",
"https://github.com/abdullahselek/SwiftyNotifications.git",
"https://github.com/abdullahselek/TakeASelfie.git",
"https://github.com/abeintopalo/appiconsetgen.git",
"https://github.com/abhimuktheeswarar/Flywheel.git",
"https://github.com/ably/ably-asset-tracking-swift.git",
"https://github.com/ably/ably-cocoa.git",
"https://github.com/ably/delta-codec-cocoa.git",
"https://github.com/ABridoux/BooleanExpressionEvaluation.git",
"https://github.com/ABridoux/lux.git",
"https://github.com/ABridoux/scout.git",
"https://github.com/achirkof/LoadableImage.git",
"https://github.com/aciidgh/SwiftMQTT.git",
"https://github.com/ActuallyTaylor/Firefly.git",
"https://github.com/ActuallyTaylor/SFSymbols.git",
"https://github.com/AdaEngine/AdaEngine.git",
"https://github.com/AdaEngine/box2d-swift.git",
"https://github.com/AdaEngine/glslang.git",
"https://github.com/AdaEngine/libpng.git",
"https://github.com/AdaEngine/miniaudio.git",
"https://github.com/AdaEngine/msdf-atlas-gen.git",
"https://github.com/AdaEngine/SPIRV-Cross.git",
"https://github.com/adam-fowler/aws-signer-v4.git",
"https://github.com/adam-fowler/big-num.git",
"https://github.com/adam-fowler/compress-nio.git",
"https://github.com/adam-fowler/dictionary-encoder.git",
"https://github.com/adam-fowler/jmespath.swift.git",
"https://github.com/adam-fowler/s3-filesystem-kit.git",
"https://github.com/adam-fowler/swift-srp.git",
"https://github.com/adam-fowler/swift-web.git",
"https://github.com/adam-fowler/xml-coding.git",
"https://github.com/adamayoung/police-data-kit.git",
"https://github.com/adamayoung/swiftlint-plugin.git",
"https://github.com/adamayoung/TMDb.git",
"https://github.com/adamcichy/SwiftySound.git",
"https://github.com/adamfootdev/AboutKit.git",
"https://github.com/adamfootdev/FeaturesKit.git",
"https://github.com/adamfootdev/HelpKit.git",
"https://github.com/adamnemecek/phantomlike.git",
"https://github.com/adamnemecek/webmidikit.git",
"https://github.com/adamrushy/OpenAISwift.git",
"https://github.com/adamwaite/Validator.git",
"https://github.com/adamwulf/ClippingBezier.git",
"https://github.com/adamwulf/HandShadows.git",
"https://github.com/adamwulf/Inkable.git",
"https://github.com/adamwulf/Locks.git",
"https://github.com/adamwulf/PerformanceBezier.git",
"https://github.com/adamwulf/PonyExpress.git",
"https://github.com/adamwulf/SwiftToolbox.git",
"https://github.com/adaptyteam/AdaptySDK-iOS.git",
"https://github.com/adhumi/bradel.git",
"https://github.com/adi-sharma26/AdvancedSwiftDataStructures.git",
"https://github.com/admkopec/LSFileWrapper.git",
"https://github.com/adobe/aepsdk-analytics-ios.git",
"https://github.com/adobe/aepsdk-core-ios.git",
"https://github.com/adobe/aepsdk-rulesengine-ios.git",
"https://github.com/Adobels/UIViewKit.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/advantagefse/json-logic-swift.git",
"https://github.com/adzerk/adzerk-ios-sdk.git",
"https://github.com/aegzorz/stilleben.git",
"https://github.com/aepryus/Acheron.git",
"https://github.com/aerisweather/aerisweather-ios.git",
"https://github.com/aerobounce/approle.swift.git",
"https://github.com/aerobounce/trash.swift.git",
"https://github.com/aestesis/aether.git",
"https://github.com/aestesis/Cairo.git",
"https://github.com/aestesis/CCairo.git",
"https://github.com/aestesis/CFontConfig.git",
"https://github.com/aestesis/CFreeType.git",
"https://github.com/aestesis/CPango.git",
"https://github.com/aestesis/Cpng.git",
"https://github.com/aestesis/libtess.git",
"https://github.com/aestesis/Uridium.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/aestesis/X11.git",
"https://github.com/aestesis/xcb.git",
"https://github.com/aestesis/Zlib.git",
"https://github.com/aggie33/BitVector.git",
"https://github.com/aggie33/CopyOnWrite.git",
"https://github.com/agisboye/CLMDB.git",
"https://github.com/agisboye/swiftlmdb.git",
"https://github.com/agnosticdev/networkconnectivity.git",
"https://github.com/AgoraIO-Community/Extension-Bose-PinPoint-iOS.git",
"https://github.com/AgoraIO-Community/Extension-Synervoz-Voice-FX-iOS.git",
"https://github.com/AgoraIO-Community/Extension-VisionLab-DoreSegment-iOS.git",
"https://github.com/AgoraIO-Community/Extension-Voicemod-iOS.git",
"https://github.com/AgoraIO-Community/SwiftUIRtc.git",
"https://github.com/AgoraIO-Community/VideoUIKit-iOS.git",
"https://github.com/AgoraIO-Community/VideoUIKit-macOS.git",
"https://github.com/AgoraIO/AgoraAudio_iOS.git",
"https://github.com/AgoraIO/AgoraAudio_macOS.git",
"https://github.com/AgoraIO/AgoraLite_iOS.git",
"https://github.com/AgoraIO/AgoraRtcEngine_iOS.git",
"https://github.com/AgoraIO/AgoraRtcEngine_macOS.git",
"https://github.com/AgoraIO/AgoraRtm_Apple.git",
"https://github.com/AgoraIO/AgoraRtm_iOS.git",
"https://github.com/AgoraIO/AgoraRtm_macOS.git",
"https://github.com/aguilarpgc/timelapse.git",
"https://github.com/aheze/SwipeActions.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/aidantwoods/swift-paseto.git",
"https://github.com/aidantwoods/swift-sodium.git",
"https://github.com/aidantwoods/TypedJSON.git",
"https://github.com/ailtonvivaz/swift-request.git",
"https://github.com/aimalygin/StableCollectionViewLayout.git",
"https://github.com/airbnb/epoxy-ios.git",
"https://github.com/airbnb/HorizonCalendar.git",
"https://github.com/airbnb/lottie-ios.git",
"https://github.com/airbnb/lottie-spm.git",
"https://github.com/airbnb/MagazineLayout.git",
"https://github.com/airbnb/ResilientDecoding.git",
"https://github.com/airbnb/swift.git",
"https://github.com/airsidemobile/JOSESwift.git",
"https://github.com/aj-bartocci/Storybook-SwiftUI.git",
"https://github.com/ajevans99/swift-json-schema.git",
"https://github.com/akardas16/SideMenu.git",
"https://github.com/akashivskyy/quick-swift-check.git",
"https://github.com/akbashev/cluster-event-sourcing.git",
"https://github.com/akbashev/swift-chat.git",
"https://github.com/akbashev/swift-distributed-actors.git",
"https://github.com/akhilcb/ACBTokenField.git",
"https://github.com/akidon0000/swift-aklog.git",
"https://github.com/akkyie/SwiftLEB.git",
"https://github.com/akkyie/Tablier.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/aksamitsah/CountryPickerAKS.git",
"https://github.com/Al00X/LanguageDetector.git",
"https://github.com/Alamofire/Alamofire.git",
"https://github.com/Alamofire/AlamofireImage.git",
"https://github.com/Alamofire/AlamofireNetworkActivityIndicator.git",
"https://github.com/alankarmisra/SwiftSignatureView.git",
"https://github.com/alaskaairlines/atom.git",
"https://github.com/AlaskaAirlines/keychain.git",
"https://github.com/albertodebortoli/Promis.git",
"https://github.com/Alecrim/AlecrimAsyncKit.git",
"https://github.com/Alecrim/AlecrimCoreData.git",
"https://github.com/Alecrim/Reachability.git",
"https://github.com/alejandro-isaza/HDF5Kit.git",
"https://github.com/alejandro-isaza/Upsurge.git",
"https://github.com/aleksproger/circular-progress.git",
"https://github.com/aleksproger/debounced-closure.git",
"https://github.com/alemar11/AdvancedOperation.git",
"https://github.com/alemar11/CoreDataPlus.git",
"https://github.com/alemar11/CountryKit.git",
"https://github.com/alemar11/Mechanica.git",
"https://github.com/alephao/swift-rlp.git",
"https://github.com/alessiorubicini/IslandAlertsForSwiftUI.git",
"https://github.com/alessiorubicini/LocationPickerForSwiftUI.git",
"https://github.com/alessiorubicini/SFSymbolsPickerForSwiftUI.git",
"https://github.com/alessiorubicini/SwiftSessions.git",
"https://github.com/alex566/Creamy3D.git",
"https://github.com/alex566/Match3Kit.git",
"https://github.com/Alexander-Ignition/OSLogging.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexanderwe/ConventionalCommitsKit.git",
"https://github.com/alexanderwe/LoggingKit.git",
"https://github.com/alexanderwe/SemanticVersioningKit.git",
"https://github.com/alexanderwe/WebSocketKit.git",
"https://github.com/alexandrehsaad/swift-contributors-plugin.git",
"https://github.com/alexbartisro/BartisUtilities.git",
"https://github.com/alexdremov/BeautyChart.git",
"https://github.com/alexdremov/FoggyColors.git",
"https://github.com/alexdremov/PathPresenter.git",
"https://github.com/alexdremov/SwiftYFinance.git",
"https://github.com/alexdrone/Primer.git",
"https://github.com/alexdrone/Render.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexeichhorn/SwiftUINavigationHeader.git",
"https://github.com/alexeichhorn/YouTubeKit.git",
"https://github.com/alexey1312/SnapshotTestingHEIC.git",
"https://github.com/alexeyxo/protobuf-swift.git",
"https://github.com/alexhunsley/patchouli-core.git",
"https://github.com/alexhunsley/patchouli-jsonpatch.git",
"https://github.com/alexisakers/HTMLString.git",
"https://github.com/alexisakers/ServerCrypto.git",
"https://github.com/alexiscreuzot/KAPinField.git",
"https://github.com/alexiscreuzot/SwiftyGif.git",
"https://github.com/alexito4/Baggins.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/Flow.git",
"https://github.com/alexito4/Raster.git",
"https://github.com/alexito4/ReadingTimePublishPlugin.git",
"https://github.com/alexito4/RelayStore.git",
"https://github.com/alexito4/sectioner.git",
"https://github.com/alexito4/slox.git",
"https://github.com/alexito4/UnwrapOrThrow.git",
"https://github.com/alexjohnj/Requests.git",
"https://github.com/alexjohnj/typednotification.git",
"https://github.com/AlexLittlejohn/DelaunaySwift.git",
"https://github.com/alexpiezo/WebRTC.git",
"https://github.com/alexrozanski/Coquille.git",
"https://github.com/alexrozanski/llama.swift.git",
"https://github.com/alexruperez/SecurePropertyStorage.git",
"https://github.com/alexruperez/tagging.git",
"https://github.com/alexslee/DesignReviewer.git",
"https://github.com/alexslee/FlexSeal.git",
"https://github.com/alexslee/Scintillate.git",
"https://github.com/alexsteinh/SwiftUCI.git",
"https://github.com/alfianlosari/GPTEncoder.git",
"https://github.com/alfianlosari/ITunesFeedGenerator.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/aliadam/imagewithactivityindicator.git",
"https://github.com/alibaba/HandyJSON.git",
"https://github.com/AliMark71/SegmentTreeKit.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/AliSoftware/OHHTTPStubs.git",
"https://github.com/AliSoftware/Reusable.git",
"https://github.com/Alja7dali/swift-web-page.git",
"https://github.com/Alkenso/sEndpointSecurity.git",
"https://github.com/Alkenso/sLaunchctl.git",
"https://github.com/Alkenso/sMock.git",
"https://github.com/Alkenso/SwiftSpellbook.git",
"https://github.com/Alkenso/SwiftSpellbook_macOS.git",
"https://github.com/Alkenso/sXPC.git",
"https://github.com/allaboutapps/DataSource.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allaboutapps/Toolbox.git",
"https://github.com/alladinian/HistogramView.git",
"https://github.com/AllanJuenemann/CalendarView.git",
"https://github.com/allegro/swift-junit.git",
"https://github.com/allegro/swiftbox-logging.git",
"https://github.com/allegro/swiftbox-metrics-statsd.git",
"https://github.com/allegro/swiftbox.git",
"https://github.com/allevato/icu-swift.git",
"https://github.com/alloyapple/goose.git",
"https://github.com/alobaili/camera-picker.git",
"https://github.com/Alpensegler/TweaKit.git",
"https://github.com/Alpha-Coders/HTMLBuilder.git",
"https://github.com/AlTavares/Ciao.git",
"https://github.com/AlTavares/Nappa.git",
"https://github.com/altavares/swiftyshell.git",
"https://github.com/AlvaroSanzRodrigo/SuperScrollView.git",
"https://github.com/Alviere/alviere-accounts-ios.git",
"https://github.com/Alviere/alviere-camera-ios.git",
"https://github.com/Alviere/alviere-cards-ios.git",
"https://github.com/Alviere/alviere-core-ios.git",
"https://github.com/Alviere/alviere-payments-ios.git",
"https://github.com/Alviere/alviere-remittances-ios.git",
"https://github.com/AlwaysRightInstitute/mustache.git",
"https://github.com/AlwaysRightInstitute/SwiftEliza.git",
"https://github.com/amadeu01/atlas.git",
"https://github.com/amarantedaniel/JanusSwift.git",
"https://github.com/AmarZimp/MyFrameworkPackage.git",
"https://github.com/amatino-code/amatino-swift.git",
"https://github.com/amayers/NumericText.git",
"https://github.com/amazon-connect/amazon-connect-chat-ios.git",
"https://github.com/ameingast/cocoaimagehashing.git",
"https://github.com/amerhukic/AHDownloadButton.git",
"https://github.com/americanexpress/xcprojectlint.git",
"https://github.com/amine2233/GitHubModel.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amine2233/Result.git",
"https://github.com/amirdew/CollectionViewPagingLayout.git",
"https://github.com/amirsaam/CodableAny.git",
"https://github.com/amirsaam/EncryptKit.git",
"https://github.com/amirsaam/PatreonAPI-Swift.git",
"https://github.com/amirsaam/RadixUI-Swift.git",
"https://github.com/Amnell/TaskLoadingAggregate.git",
"https://github.com/amodm/iso9660-swift.git",
"https://github.com/amonshiz/NavigationTitle.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/JWSETKit.git",
"https://github.com/amosavian/LocaleManager.git",
"https://github.com/amplitude/Amplitude-iOS.git",
"https://github.com/amplitude/analytics-connector-ios.git",
"https://github.com/amraboelela/amrleveldb.git",
"https://github.com/amraboelela/swiftleveldb.git",
"https://github.com/AmrKoritem/AKLanguageManager.git",
"https://github.com/amzn/openapi-swift-code-generate.git",
"https://github.com/amzn/service-model-swift-code-generate.git",
"https://github.com/amzn/smoke-aws-credentials.git",
"https://github.com/amzn/smoke-aws-generate.git",
"https://github.com/amzn/smoke-aws-support.git",
"https://github.com/amzn/smoke-aws.git",
"https://github.com/amzn/smoke-dynamodb.git",
"https://github.com/amzn/smoke-framework.git",
"https://github.com/amzn/smoke-http.git",
"https://github.com/AnarchoSystems/AST.git",
"https://github.com/AnarchoSystems/DeepSwift.git",
"https://github.com/AnbalaganD/BoundarySlider.git",
"https://github.com/AnbalaganD/EagleNet.git",
"https://github.com/AnbalaganD/iModels.git",
"https://github.com/Anbarasan-S/DisplayerPackage.git",
"https://github.com/andersonlucasg3/Swift.Binary.git",
"https://github.com/andooown/lexicon-gen.git",
"https://github.com/andooown/swift-atproto.git",
"https://github.com/andre-alves/PHDiff.git",
"https://github.com/Andre-Pham/SwiftSerialization.git",
"https://github.com/andreabusi/SwiftFlags.git",
"https://github.com/andrealufino/ChangelogKit.git",
"https://github.com/andrealufino/Deviice.git",
"https://github.com/andrealufino/Luminous.git",
"https://github.com/andrealufino/QRDispenser.git",
"https://github.com/andreamazz/AMPopTip.git",
"https://github.com/andreamazz/AMScrollingNavbar.git",
"https://github.com/andreamazz/BubbleTransition.git",
"https://github.com/andreamazz/SubtleVolume.git",
"https://github.com/AndreasVerhoeven/AutoLayoutConvenience.git",
"https://github.com/AndreasVerhoeven/AveCommonHelperViews.git",
"https://github.com/AndreasVerhoeven/AveDataSource.git",
"https://github.com/AndreasVerhoeven/AveFontHelpers.git",
"https://github.com/AndreasVerhoeven/BalloonView.git",
"https://github.com/AndreasVerhoeven/CustomPageableCollectionView.git",
"https://github.com/AndreasVerhoeven/GeometryHelpers.git",
"https://github.com/AndreasVerhoeven/NavigationBarBackgroundHider.git",
"https://github.com/AndreasVerhoeven/ScrollViewObserver.git",
"https://github.com/AndreasVerhoeven/SelfSizingScroller.git",
"https://github.com/AndreasVerhoeven/StackedItemsCarousel.git",
"https://github.com/AndreasVerhoeven/UIKitAnimations.git",
"https://github.com/andrei200287/Chat2App.git",
"https://github.com/andreilob/CameraKage.git",
"https://github.com/andresilvagomez/Localize.git",
"https://github.com/AndrewBarba/alpaca-swift.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/AndrewBarba/lisk-swift.git",
"https://github.com/AndrewBennet/PersistedPropertyWrapper.git",
"https://github.com/andrey-shavelev/Juice.git",
"https://github.com/Androp0v/PowerMetricsKit.git",
"https://github.com/andtie/SequenceBuilder.git",
"https://github.com/andtie/YukonMatchedGeometry.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/andyfinnell/NativeMarkKit.git",
"https://github.com/andymedvedev/CTXTutorialEngine.git",
"https://github.com/angelopino/APJExtensions.git",
"https://github.com/angu-software/SwiftAsyncAssert.git",
"https://github.com/aniket965/argstodict.git",
"https://github.com/aniket965/eraser.git",
"https://github.com/aniket965/eternalflame.git",
"https://github.com/aniket965/treecli.git",
"https://github.com/antitypical/Result.git",
"https://github.com/antlr/antlr4.git",
"https://github.com/antongaenko/keybro.git",
"https://github.com/antonio-war/SwiftyGPT.git",
"https://github.com/antonio-war/SwiftyNetworking.git",
"https://github.com/antonio-war/SwiftyReachability.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/antonmartinsson/GaugeKit.git",
"https://github.com/antonsynd/swift-event-broadcasting.git",
"https://github.com/antranapp/SwiftyHUDView.git",
"https://github.com/anttijuu/FinnishPIDVerifier.git",
"https://github.com/anup-deshpande/EmptyDataView.git",
"https://github.com/Anyline/anyline-ocr-spm-module.git",
"https://github.com/anzfactory/twitterclientcli.git",
"https://github.com/apacheexpress/apacheexpress3.git",
"https://github.com/Apadmi-Engineering/SwiftMockzilla.git",
"https://github.com/AparokshaUI/adwaita-swift.git",
"https://github.com/AparokshaUI/CodeEditor.git",
"https://github.com/AparokshaUI/Localized.git",
"https://github.com/apester-dev/ios-sdk.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apocolipse/Thrift-Swift.git",
"https://github.com/Apodini/swift-log-elk.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/BilibiliKit.git",
"https://github.com/ApolloZhu/BoolBuilder.git",
"https://github.com/ApolloZhu/srt2bilibilikit.git",
"https://github.com/ApolloZhu/swift_qrcodejs.git",
"https://github.com/apparata/clikit.git",
"https://github.com/apparata/markin.git",
"https://github.com/apparata/rulekit.git",
"https://github.com/Appboy/appboy-ios-sdk.git",
"https://github.com/appcraftconsulting/buymeacoffee.git",
"https://github.com/appcraftconsulting/producthunt.git",
"https://github.com/appcron/acinteractor.git",
"https://github.com/appcues/appcues-ios-sdk.git",
"https://github.com/appcues/segment-appcues-ios.git",
"https://github.com/appdecentral/replicatingtypes.git",
"https://github.com/apple/app-store-server-library-swift.git",
"https://github.com/apple/example-package-dealer.git",
"https://github.com/apple/example-package-deckofplayingcards.git",
"https://github.com/apple/example-package-figlet.git",
"https://github.com/apple/example-package-fisheryates.git",
"https://github.com/apple/example-package-playingcard.git",
"https://github.com/apple/FHIRModels.git",
"https://github.com/apple/live-caller-id-lookup-example.git",
"https://github.com/apple/ml-stable-diffusion.git",
"https://github.com/apple/pkl-swift.git",
"https://github.com/apple/swift-algorithms.git",
"https://github.com/apple/swift-argument-parser.git",
"https://github.com/apple/swift-asn1.git",
"https://github.com/apple/swift-async-algorithms.git",
"https://github.com/apple/swift-async-dns-resolver.git",
"https://github.com/apple/swift-atomics.git",
"https://github.com/apple/swift-cassandra-client.git",
"https://github.com/apple/swift-certificates.git",
"https://github.com/apple/swift-cluster-membership.git",
"https://github.com/apple/swift-collections-benchmark.git",
"https://github.com/apple/swift-collections.git",
"https://github.com/apple/swift-crypto.git",
"https://github.com/apple/swift-distributed-actors.git",
"https://github.com/apple/swift-distributed-tracing-baggage-core.git",
"https://github.com/apple/swift-distributed-tracing-extras.git",
"https://github.com/apple/swift-distributed-tracing.git",
"https://github.com/apple/swift-foundation-icu.git",
"https://github.com/apple/swift-foundation.git",
"https://github.com/apple/swift-homomorphic-encryption.git",
"https://github.com/apple/swift-http-structured-headers.git",
"https://github.com/apple/swift-http-types.git",
"https://github.com/apple/swift-llbuild2.git",
"https://github.com/apple/swift-log.git",
"https://github.com/apple/swift-matter-examples.git",
"https://github.com/apple/swift-metrics-extras.git",
"https://github.com/apple/swift-metrics.git",
"https://github.com/apple/swift-mmio.git",
"https://github.com/apple/swift-nio-extras.git",
"https://github.com/apple/swift-nio-http2.git",
"https://github.com/apple/swift-nio-imap.git",
"https://github.com/apple/swift-nio-nghttp2-support.git",
"https://github.com/apple/swift-nio-oblivious-http.git",
"https://github.com/apple/swift-nio-ssh.git",
"https://github.com/apple/swift-nio-ssl-support.git",
"https://github.com/apple/swift-nio-ssl.git",
"https://github.com/apple/swift-nio-transport-services.git",
"https://github.com/apple/swift-nio-zlib-support.git",
"https://github.com/apple/swift-nio.git",
"https://github.com/apple/swift-numerics.git",
"https://github.com/apple/swift-openapi-generator.git",
"https://github.com/apple/swift-openapi-runtime.git",
"https://github.com/apple/swift-openapi-urlsession.git",
"https://github.com/apple/swift-playdate-examples.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-service-context.git",
"https://github.com/apple/swift-service-discovery.git",
"https://github.com/apple/swift-standard-library-preview.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-system.git",
"https://github.com/apple/swift-tools-support-async.git",
"https://github.com/apple/swiftpm-on-llbuild2.git",
"https://github.com/ApplebaumIan/SwiftUI-Apple-Watch-Decimal-Pad.git",
"https://github.com/AppLovin/AppLovin-MAX-Swift-Package.git",
"https://github.com/appmetrica/appmetrica-sdk-ios.git",
"https://github.com/appmetrica/Kiwi.git",
"https://github.com/appmetrica/push-sdk-ios.git",
"https://github.com/appoly/AtlasKit.git",
"https://github.com/appoly/PassportKit.git",
"https://github.com/apppear/chartview.git",
"https://github.com/Appracatappra/AddToSiriButton.git",
"https://github.com/Appracatappra/AppStoreManager.git",
"https://github.com/Appracatappra/CircularProgressGauge.git",
"https://github.com/Appracatappra/GameCenterManager.git",
"https://github.com/Appracatappra/GraceLanguage.git",
"https://github.com/Appracatappra/LogManager.git",
"https://github.com/Appracatappra/MultiplatformTabBar.git",
"https://github.com/Appracatappra/ODRManager.git",
"https://github.com/Appracatappra/SimpleSerializer.git",
"https://github.com/Appracatappra/SoundManager.git",
"https://github.com/Appracatappra/SpeechManager.git",
"https://github.com/Appracatappra/SwiftletBarcodes.git",
"https://github.com/Appracatappra/SwiftletData.git",
"https://github.com/Appracatappra/SwiftletRadioButtonPicker.git",
"https://github.com/Appracatappra/SwiftletUtilities.git",
"https://github.com/Appracatappra/SwiftUIGamepad.git",
"https://github.com/Appracatappra/SwiftUIKit.git",
"https://github.com/Appracatappra/SwiftUIPanoramaViewer.git",
"https://github.com/Appracatappra/SwiftUiSharing.git",
"https://github.com/approvals/ApprovalTests.Swift.git",
"https://github.com/Appsaurus/Avatars.git",
"https://github.com/Appsaurus/CodableExtensions.git",
"https://github.com/appsaurus/cursorpagination.git",
"https://github.com/Appsaurus/Fakery.git",
"https://github.com/Appsaurus/FluentExtensions.git",
"https://github.com/appsaurus/fluentseeder.git",
"https://github.com/Appsaurus/FluentTestApp.git",
"https://github.com/Appsaurus/FluentTestModels.git",
"https://github.com/Appsaurus/FluentTestUtils.git",
"https://github.com/Appsaurus/PlaceholderImages.git",
"https://github.com/Appsaurus/RandomFactory.git",
"https://github.com/Appsaurus/RoutingKitExtensions.git",
"https://github.com/Appsaurus/RuntimeExtensions.git",
"https://github.com/Appsaurus/SwiftTestUtils.git",
"https://github.com/Appsaurus/VaporExtensions.git",
"https://github.com/Appsaurus/VaporTestUtils.git",
"https://github.com/appsquickly/XcodeEditor.git",
"https://github.com/appstefan/HighlightSwift.git",
"https://github.com/apptekstudios/ASCollectionView.git",
"https://github.com/appwrite/sdk-for-apple.git",
"https://github.com/appwrite/sdk-for-swift.git",
"https://github.com/aptabase/aptabase-swift.git",
"https://github.com/Arafo/LightSessionKit.git",
"https://github.com/arasan01/swift-dependencies-extras.git",
"https://github.com/arbyruns/AnimatedSwipeCard.git",
"https://github.com/ArchieGoodwin/AnyTranslate.git",
"https://github.com/ArchieGoodwin/AudioProcessor.git",
"https://github.com/ArchieGoodwin/BLEDiscovery.git",
"https://github.com/ArchieGoodwin/ElevenlabsSwift.git",
"https://github.com/ArchieGoodwin/PineconeSwift.git",
"https://github.com/AreroKetahi/P-Certificate.git",
"https://github.com/argentlabs/web3.swift.git",
"https://github.com/argmaxinc/whisperkit.git",
"https://github.com/arguiot/Euler.git",
"https://github.com/Arideno/AlphaMacroKit.git",
"https://github.com/arjun-dureja/ModernSlider.git",
"https://github.com/armadsen/GlassGem.git",
"https://github.com/armadsen/mypackage.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/ArnavMotwani/CircularProgressSwiftUI.git",
"https://github.com/ArnavMotwani/UnsplashSwiftUI.git",
"https://github.com/arnecs/mqttkit.git",
"https://github.com/aronbudinszky/hcaptcha-swift.git",
"https://github.com/aronbudinszky/postmark-swift.git",
"https://github.com/art-divin/Stencil.git",
"https://github.com/art-divin/StencilSwiftKit.git",
"https://github.com/art-divin/swift-driver.git",
"https://github.com/art-divin/swift-llbuild.git",
"https://github.com/art-divin/swift-package-manager.git",
"https://github.com/art-divin/swift-tools-support-core.git",
"https://github.com/artemkalinovsky/Legatus.git",
"https://github.com/artemnovichkov/carting.git",
"https://github.com/artemnovichkov/fastfood.git",
"https://github.com/artemnovichkov/figma-preview.git",
"https://github.com/artemnovichkov/spasibo.git",
"https://github.com/artemnovichkov/TransitionRouter.git",
"https://github.com/ArthurGuibert/SwiftUI-MulticolorGradient.git",
"https://github.com/arthurpalves/badgy.git",
"https://github.com/arthurpalves/coherent-swift.git",
"https://github.com/Arti3DPlayer/USBDeviceSwift.git",
"https://github.com/artman/Signals.git",
"https://github.com/ArtSabintsev/Fontblaster.git",
"https://github.com/ArtSabintsev/Freedom.git",
"https://github.com/ArtSabintsev/Guitar.git",
"https://github.com/ArtSabintsev/Siren.git",
"https://github.com/ArtSabintsev/Zephyr.git",
"https://github.com/arturgrigor/IPAPI.git",
"https://github.com/Asana/locheck.git",
"https://github.com/asensei/AnyCodable.git",
"https://github.com/asensei/couchbase-cluster-manager.git",
"https://github.com/asensei/Result.git",
"https://github.com/asensei/vapor-auth-jwt.git",
"https://github.com/asensei/vapor-fluent-mongo.git",
"https://github.com/ashfurrow/danger-swiftlint.git",
"https://github.com/ashleymills/Reachability.swift.git",
"https://github.com/ashvardanian/StringZilla.git",
"https://github.com/ashvardanian/swift-transformers.git",
"https://github.com/askrav/yelpprovider.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/assad62/SZSAuthentication.git",
"https://github.com/Ast3r10n/async-image-fetcher.git",
"https://github.com/Ast3r10n/ItalianFiscalCodeTools.git",
"https://github.com/Ast3r10n/swiftquests.git",
"https://github.com/astzweig/swift-digits.git",
"https://github.com/astzweig/swiftui-frameless-window.git",
"https://github.com/astzweig/swiftui-launcher-window.git",
"https://github.com/astzweig/swiftui-window-reference.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/AsyncSwift/AsyncLocationKit.git",
"https://github.com/AsyncSwiftKits/AsyncChannelKit.git",
"https://github.com/AsyncSwiftKits/AsyncTesting.git",
"https://github.com/AsyncSwiftKits/ConnectivityKit.git",
"https://github.com/AsyncSwiftKits/Hela.git",
"https://github.com/ataetgi/DynamicSearchBarPlaceholders.git",
"https://github.com/athankefalas/Stitcher.git",
"https://github.com/athankefalas/StitcherMacros.git",
"https://github.com/atierian/manifestation.git",
"https://github.com/attaswift/Attabench.git",
"https://github.com/attaswift/Benchmarking.git",
"https://github.com/attaswift/BigInt.git",
"https://github.com/attaswift/BTree.git",
"https://github.com/attaswift/Deque.git",
"https://github.com/attaswift/GlueKit.git",
"https://github.com/attaswift/OptionParser.git",
"https://github.com/attaswift/SipHash.git",
"https://github.com/attilathefun/swaggerparser.git",
"https://github.com/AudioKit/AudioKit.git",
"https://github.com/AudioKit/AudioKitEX.git",
"https://github.com/AudioKit/AudioKitUI.git",
"https://github.com/AudioKit/Controls.git",
"https://github.com/AudioKit/DevoloopAudioKit.git",
"https://github.com/AudioKit/DunneAudioKit.git",
"https://github.com/AudioKit/Flow.git",
"https://github.com/AudioKit/Keyboard.git",