forked from purescript/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bower-packages.json
1430 lines (1430 loc) · 122 KB
/
bower-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
{
"purescript-TypeAhead": "https://github.com/aljce/purescript-typeahead.git",
"purescript-abides": "https://github.com/athanclark/purescript-abides.git",
"purescript-abstract-database": "https://github.com/chrisdotcode/purescript-abstract-database.git",
"purescript-accounting": "https://github.com/ascjones/purescript-accounting.git",
"purescript-ace": "https://github.com/purescript-contrib/purescript-ace.git",
"purescript-ace-halogen": "https://github.com/purescript-halogen/purescript-ace-halogen.git",
"purescript-ace-halogen-012": "https://github.com/shmish111/purescript-ace-halogen.git",
"purescript-activity-monitor": "https://github.com/collegevine/purescript-activity-monitor.git",
"purescript-aff": "https://github.com/purescript-contrib/purescript-aff.git",
"purescript-aff-bus": "https://github.com/purescript-contrib/purescript-aff-bus.git",
"purescript-aff-coroutines": "https://github.com/purescript-contrib/purescript-aff-coroutines.git",
"purescript-aff-free": "https://github.com/slamdata/purescript-aff-free.git",
"purescript-aff-future": "https://github.com/slamdata/purescript-aff-future.git",
"purescript-aff-parallel": "https://github.com/eheitherd/purescript-aff-parallel.git",
"purescript-aff-promise": "https://github.com/nwolverson/purescript-aff-promise.git",
"purescript-aff-reattempt": "https://github.com/slamdata/purescript-aff-reattempt.git",
"purescript-aff-retry": "https://github.com/Unisay/purescript-aff-retry.git",
"purescript-aff-throttler": "https://github.com/LiamGoodacre/purescript-aff-throttler.git",
"purescript-affjax": "https://github.com/purescript-contrib/purescript-affjax.git",
"purescript-affjax-algebra": "https://github.com/slamdata/purescript-affjax-algebra.git",
"purescript-airconsole": "https://github.com/mckayb/purescript-airconsole.git",
"purescript-airconsole-controls": "https://github.com/mckayb/purescript-airconsole-controls.git",
"purescript-airconsole-view-manager": "https://github.com/mckayb/purescript-airconsole-view-manager.git",
"purescript-ajax": "https://github.com/joneshf/purescript-ajax.git",
"purescript-alert": "https://github.com/cdepillabout/purescript-alert.git",
"purescript-alexa": "https://github.com/twitchard/purescript-alexa.git",
"purescript-algebra": "https://github.com/joneshf/purescript-algebra.git",
"purescript-almost": "https://github.com/TylorS/almost.git",
"purescript-alphasucc": "https://github.com/justinwoo/purescript-alphasucc.git",
"purescript-amqp": "https://github.com/abhin4v/purescript-amqp.git",
"purescript-angle": "https://github.com/joneshf/purescript-angle.git",
"purescript-angular": "https://github.com/ethul/purescript-angular.git",
"purescript-annoy": "https://github.com/Kamirus/purescript-annoy.git",
"purescript-ansi": "https://github.com/hdgarrood/purescript-ansi.git",
"purescript-api-helpers": "https://github.com/adarqui/purescript-api-helpers.git",
"purescript-apparch": "https://github.com/agrafix/purescript-apparch.git",
"purescript-applicative-lists": "https://github.com/ethul/purescript-applicative-lists.git",
"purescript-apply-algebra": "https://github.com/morganthomas/purescript-apply-algebra.git",
"purescript-arb-instances": "https://github.com/purescript/purescript-arb-instances",
"purescript-argonaut": "https://github.com/purescript-contrib/purescript-argonaut.git",
"purescript-argonaut-aeson-generic": "https://github.com/coot/purescript-argonaut-aeson-generic.git",
"purescript-argonaut-codecs": "https://github.com/purescript-contrib/purescript-argonaut-codecs.git",
"purescript-argonaut-core": "https://github.com/purescript-contrib/purescript-argonaut-core.git",
"purescript-argonaut-generic": "https://github.com/purescript-contrib/purescript-argonaut-generic.git",
"purescript-argonaut-generic-codecs": "https://github.com/eskimor/purescript-argonaut-generic-codecs.git",
"purescript-argonaut-traversals": "https://github.com/purescript-contrib/purescript-argonaut-traversals.git",
"purescript-array-shuffle": "https://github.com/dgendill/purescript-array-shuffle.git",
"purescript-array-views": "https://github.com/klntsky/purescript-array-views.git",
"purescript-arraybuffer": "https://github.com/purescript-contrib/purescript-arraybuffer.git",
"purescript-arraybuffer-class": "https://github.com/athanclark/purescript-arraybuffer-class.git",
"purescript-arraybuffer-types": "https://github.com/purescript-contrib/purescript-arraybuffer-types.git",
"purescript-arrays": "https://github.com/purescript/purescript-arrays.git",
"purescript-arrows": "https://github.com/purescript-deprecated/purescript-arrows.git",
"purescript-asap": "https://github.com/bodil/purescript-asap.git",
"purescript-aspen": "https://github.com/taylor1791/purescript-aspen.git",
"purescript-assert": "https://github.com/purescript/purescript-assert.git",
"purescript-assertion-error": "https://github.com/philopon/purescript-assertion-error.git",
"purescript-assertions-deepdiff": "https://github.com/cyrbon/purescript-assertions-deepdiff.git",
"purescript-asyncstorage-free": "https://github.com/ethul/purescript-asyncstorage-free.git",
"purescript-atomic-react": "https://github.com/atomicits/purescript-atomic-react.git",
"purescript-audiograph": "https://github.com/newlandsvalley/purescript-audiograph.git",
"purescript-aui": "https://github.com/rintcius/purescript-aui.git",
"purescript-autocomplete": "https://github.com/megamaddu/purescript-autocomplete.git",
"purescript-automata": "https://github.com/joneshf/purescript-automata.git",
"purescript-avar": "https://github.com/purescript-contrib/purescript-avar.git",
"purescript-aws": "https://github.com/dysinger/purescript-aws.git",
"purescript-aws-acm": "https://github.com/purescript-aws-sdk/purescript-aws-acm.git",
"purescript-aws-alexaforbusiness": "https://github.com/purescript-aws-sdk/purescript-aws-alexaforbusiness.git",
"purescript-aws-apigateway": "https://github.com/purescript-aws-sdk/purescript-aws-apigateway.git",
"purescript-aws-applicationautoscaling": "https://github.com/purescript-aws-sdk/purescript-aws-applicationautoscaling.git",
"purescript-aws-appstream": "https://github.com/purescript-aws-sdk/purescript-aws-appstream.git",
"purescript-aws-appsync": "https://github.com/purescript-aws-sdk/purescript-aws-appsync.git",
"purescript-aws-athena": "https://github.com/purescript-aws-sdk/purescript-aws-athena.git",
"purescript-aws-autoscaling": "https://github.com/purescript-aws-sdk/purescript-aws-autoscaling.git",
"purescript-aws-autoscalingplans": "https://github.com/purescript-aws-sdk/purescript-aws-autoscalingplans.git",
"purescript-aws-batch": "https://github.com/purescript-aws-sdk/purescript-aws-batch.git",
"purescript-aws-budgets": "https://github.com/purescript-aws-sdk/purescript-aws-budgets.git",
"purescript-aws-cloud9": "https://github.com/purescript-aws-sdk/purescript-aws-cloud9.git",
"purescript-aws-clouddirectory": "https://github.com/purescript-aws-sdk/purescript-aws-clouddirectory.git",
"purescript-aws-cloudformation": "https://github.com/purescript-aws-sdk/purescript-aws-cloudformation.git",
"purescript-aws-cloudfront": "https://github.com/purescript-aws-sdk/purescript-aws-cloudfront.git",
"purescript-aws-cloudhsm": "https://github.com/purescript-aws-sdk/purescript-aws-cloudhsm.git",
"purescript-aws-cloudhsmv2": "https://github.com/purescript-aws-sdk/purescript-aws-cloudhsmv2.git",
"purescript-aws-cloudsearch": "https://github.com/purescript-aws-sdk/purescript-aws-cloudsearch.git",
"purescript-aws-cloudsearchdomain": "https://github.com/purescript-aws-sdk/purescript-aws-cloudsearchdomain.git",
"purescript-aws-cloudtrail": "https://github.com/purescript-aws-sdk/purescript-aws-cloudtrail.git",
"purescript-aws-cloudwatch": "https://github.com/purescript-aws-sdk/purescript-aws-cloudwatch.git",
"purescript-aws-cloudwatchevents": "https://github.com/purescript-aws-sdk/purescript-aws-cloudwatchevents.git",
"purescript-aws-cloudwatchlogs": "https://github.com/purescript-aws-sdk/purescript-aws-cloudwatchlogs.git",
"purescript-aws-codebuild": "https://github.com/purescript-aws-sdk/purescript-aws-codebuild.git",
"purescript-aws-codecommit": "https://github.com/purescript-aws-sdk/purescript-aws-codecommit.git",
"purescript-aws-codedeploy": "https://github.com/purescript-aws-sdk/purescript-aws-codedeploy.git",
"purescript-aws-codepipeline": "https://github.com/purescript-aws-sdk/purescript-aws-codepipeline.git",
"purescript-aws-codestar": "https://github.com/purescript-aws-sdk/purescript-aws-codestar.git",
"purescript-aws-cognitoidentity": "https://github.com/purescript-aws-sdk/purescript-aws-cognitoidentity.git",
"purescript-aws-cognitoidentityserviceprovider": "https://github.com/purescript-aws-sdk/purescript-aws-cognitoidentityserviceprovider.git",
"purescript-aws-cognitosync": "https://github.com/purescript-aws-sdk/purescript-aws-cognitosync.git",
"purescript-aws-comprehend": "https://github.com/purescript-aws-sdk/purescript-aws-comprehend.git",
"purescript-aws-configservice": "https://github.com/purescript-aws-sdk/purescript-aws-configservice.git",
"purescript-aws-costexplorer": "https://github.com/purescript-aws-sdk/purescript-aws-costexplorer.git",
"purescript-aws-cur": "https://github.com/purescript-aws-sdk/purescript-aws-cur.git",
"purescript-aws-datapipeline": "https://github.com/purescript-aws-sdk/purescript-aws-datapipeline.git",
"purescript-aws-dax": "https://github.com/purescript-aws-sdk/purescript-aws-dax.git",
"purescript-aws-devicefarm": "https://github.com/purescript-aws-sdk/purescript-aws-devicefarm.git",
"purescript-aws-directconnect": "https://github.com/purescript-aws-sdk/purescript-aws-directconnect.git",
"purescript-aws-directoryservice": "https://github.com/purescript-aws-sdk/purescript-aws-directoryservice.git",
"purescript-aws-discovery": "https://github.com/purescript-aws-sdk/purescript-aws-discovery.git",
"purescript-aws-dms": "https://github.com/purescript-aws-sdk/purescript-aws-dms.git",
"purescript-aws-dynamodb": "https://github.com/purescript-aws-sdk/purescript-aws-dynamodb.git",
"purescript-aws-dynamodbstreams": "https://github.com/purescript-aws-sdk/purescript-aws-dynamodbstreams.git",
"purescript-aws-ec2": "https://github.com/purescript-aws-sdk/purescript-aws-ec2.git",
"purescript-aws-ecr": "https://github.com/purescript-aws-sdk/purescript-aws-ecr.git",
"purescript-aws-ecs": "https://github.com/purescript-aws-sdk/purescript-aws-ecs.git",
"purescript-aws-efs": "https://github.com/purescript-aws-sdk/purescript-aws-efs.git",
"purescript-aws-elasticache": "https://github.com/purescript-aws-sdk/purescript-aws-elasticache.git",
"purescript-aws-elasticbeanstalk": "https://github.com/purescript-aws-sdk/purescript-aws-elasticbeanstalk.git",
"purescript-aws-elastictranscoder": "https://github.com/purescript-aws-sdk/purescript-aws-elastictranscoder.git",
"purescript-aws-elb": "https://github.com/purescript-aws-sdk/purescript-aws-elb.git",
"purescript-aws-elbv2": "https://github.com/purescript-aws-sdk/purescript-aws-elbv2.git",
"purescript-aws-emr": "https://github.com/purescript-aws-sdk/purescript-aws-emr.git",
"purescript-aws-es": "https://github.com/purescript-aws-sdk/purescript-aws-es.git",
"purescript-aws-firehose": "https://github.com/purescript-aws-sdk/purescript-aws-firehose.git",
"purescript-aws-gamelift": "https://github.com/purescript-aws-sdk/purescript-aws-gamelift.git",
"purescript-aws-glacier": "https://github.com/purescript-aws-sdk/purescript-aws-glacier.git",
"purescript-aws-glue": "https://github.com/purescript-aws-sdk/purescript-aws-glue.git",
"purescript-aws-greengrass": "https://github.com/purescript-aws-sdk/purescript-aws-greengrass.git",
"purescript-aws-guardduty": "https://github.com/purescript-aws-sdk/purescript-aws-guardduty.git",
"purescript-aws-health": "https://github.com/purescript-aws-sdk/purescript-aws-health.git",
"purescript-aws-iam": "https://github.com/purescript-aws-sdk/purescript-aws-iam.git",
"purescript-aws-importexport": "https://github.com/purescript-aws-sdk/purescript-aws-importexport.git",
"purescript-aws-inspector": "https://github.com/purescript-aws-sdk/purescript-aws-inspector.git",
"purescript-aws-iot": "https://github.com/purescript-aws-sdk/purescript-aws-iot.git",
"purescript-aws-iotdata": "https://github.com/purescript-aws-sdk/purescript-aws-iotdata.git",
"purescript-aws-iotjobsdataplane": "https://github.com/purescript-aws-sdk/purescript-aws-iotjobsdataplane.git",
"purescript-aws-kinesis": "https://github.com/purescript-aws-sdk/purescript-aws-kinesis.git",
"purescript-aws-kinesisanalytics": "https://github.com/purescript-aws-sdk/purescript-aws-kinesisanalytics.git",
"purescript-aws-kinesisvideo": "https://github.com/purescript-aws-sdk/purescript-aws-kinesisvideo.git",
"purescript-aws-kinesisvideoarchivedmedia": "https://github.com/purescript-aws-sdk/purescript-aws-kinesisvideoarchivedmedia.git",
"purescript-aws-kinesisvideomedia": "https://github.com/purescript-aws-sdk/purescript-aws-kinesisvideomedia.git",
"purescript-aws-kms": "https://github.com/purescript-aws-sdk/purescript-aws-kms.git",
"purescript-aws-lambda": "https://github.com/purescript-aws-sdk/purescript-aws-lambda.git",
"purescript-aws-lambda-express": "https://github.com/lpil/purescript-aws-lambda-express.git",
"purescript-aws-lexmodelbuildingservice": "https://github.com/purescript-aws-sdk/purescript-aws-lexmodelbuildingservice.git",
"purescript-aws-lexruntime": "https://github.com/purescript-aws-sdk/purescript-aws-lexruntime.git",
"purescript-aws-lightsail": "https://github.com/purescript-aws-sdk/purescript-aws-lightsail.git",
"purescript-aws-machinelearning": "https://github.com/purescript-aws-sdk/purescript-aws-machinelearning.git",
"purescript-aws-marketplacecommerceanalytics": "https://github.com/purescript-aws-sdk/purescript-aws-marketplacecommerceanalytics.git",
"purescript-aws-marketplaceentitlementservice": "https://github.com/purescript-aws-sdk/purescript-aws-marketplaceentitlementservice.git",
"purescript-aws-marketplacemetering": "https://github.com/purescript-aws-sdk/purescript-aws-marketplacemetering.git",
"purescript-aws-mediaconvert": "https://github.com/purescript-aws-sdk/purescript-aws-mediaconvert.git",
"purescript-aws-medialive": "https://github.com/purescript-aws-sdk/purescript-aws-medialive.git",
"purescript-aws-mediapackage": "https://github.com/purescript-aws-sdk/purescript-aws-mediapackage.git",
"purescript-aws-mediastore": "https://github.com/purescript-aws-sdk/purescript-aws-mediastore.git",
"purescript-aws-mediastoredata": "https://github.com/purescript-aws-sdk/purescript-aws-mediastoredata.git",
"purescript-aws-migrationhub": "https://github.com/purescript-aws-sdk/purescript-aws-migrationhub.git",
"purescript-aws-mobile": "https://github.com/purescript-aws-sdk/purescript-aws-mobile.git",
"purescript-aws-mobileanalytics": "https://github.com/purescript-aws-sdk/purescript-aws-mobileanalytics.git",
"purescript-aws-mq": "https://github.com/purescript-aws-sdk/purescript-aws-mq.git",
"purescript-aws-mturk": "https://github.com/purescript-aws-sdk/purescript-aws-mturk.git",
"purescript-aws-opsworks": "https://github.com/purescript-aws-sdk/purescript-aws-opsworks.git",
"purescript-aws-opsworkscm": "https://github.com/purescript-aws-sdk/purescript-aws-opsworkscm.git",
"purescript-aws-organizations": "https://github.com/purescript-aws-sdk/purescript-aws-organizations.git",
"purescript-aws-pinpoint": "https://github.com/purescript-aws-sdk/purescript-aws-pinpoint.git",
"purescript-aws-polly": "https://github.com/purescript-aws-sdk/purescript-aws-polly.git",
"purescript-aws-pricing": "https://github.com/purescript-aws-sdk/purescript-aws-pricing.git",
"purescript-aws-rds": "https://github.com/purescript-aws-sdk/purescript-aws-rds.git",
"purescript-aws-redshift": "https://github.com/purescript-aws-sdk/purescript-aws-redshift.git",
"purescript-aws-rekognition": "https://github.com/purescript-aws-sdk/purescript-aws-rekognition.git",
"purescript-aws-request": "https://github.com/purescript-aws-sdk/purescript-aws-request.git",
"purescript-aws-resourcegroups": "https://github.com/purescript-aws-sdk/purescript-aws-resourcegroups.git",
"purescript-aws-resourcegroupstaggingapi": "https://github.com/purescript-aws-sdk/purescript-aws-resourcegroupstaggingapi.git",
"purescript-aws-route53": "https://github.com/purescript-aws-sdk/purescript-aws-route53.git",
"purescript-aws-route53domains": "https://github.com/purescript-aws-sdk/purescript-aws-route53domains.git",
"purescript-aws-s3": "https://github.com/purescript-aws-sdk/purescript-aws-s3.git",
"purescript-aws-sagemaker": "https://github.com/purescript-aws-sdk/purescript-aws-sagemaker.git",
"purescript-aws-sagemakerruntime": "https://github.com/purescript-aws-sdk/purescript-aws-sagemakerruntime.git",
"purescript-aws-sdk": "https://github.com/purescript-aws-sdk/purescript-aws-sdk.git",
"purescript-aws-serverlessapplicationrepository": "https://github.com/purescript-aws-sdk/purescript-aws-serverlessapplicationrepository.git",
"purescript-aws-servicecatalog": "https://github.com/purescript-aws-sdk/purescript-aws-servicecatalog.git",
"purescript-aws-servicediscovery": "https://github.com/purescript-aws-sdk/purescript-aws-servicediscovery.git",
"purescript-aws-ses": "https://github.com/purescript-aws-sdk/purescript-aws-ses.git",
"purescript-aws-shield": "https://github.com/purescript-aws-sdk/purescript-aws-shield.git",
"purescript-aws-simpledb": "https://github.com/purescript-aws-sdk/purescript-aws-simpledb.git",
"purescript-aws-sms": "https://github.com/purescript-aws-sdk/purescript-aws-sms.git",
"purescript-aws-snowball": "https://github.com/purescript-aws-sdk/purescript-aws-snowball.git",
"purescript-aws-sns": "https://github.com/purescript-aws-sdk/purescript-aws-sns.git",
"purescript-aws-sqs": "https://github.com/purescript-aws-sdk/purescript-aws-sqs.git",
"purescript-aws-ssm": "https://github.com/purescript-aws-sdk/purescript-aws-ssm.git",
"purescript-aws-stepfunctions": "https://github.com/purescript-aws-sdk/purescript-aws-stepfunctions.git",
"purescript-aws-storagegateway": "https://github.com/purescript-aws-sdk/purescript-aws-storagegateway.git",
"purescript-aws-sts": "https://github.com/purescript-aws-sdk/purescript-aws-sts.git",
"purescript-aws-support": "https://github.com/purescript-aws-sdk/purescript-aws-support.git",
"purescript-aws-swf": "https://github.com/purescript-aws-sdk/purescript-aws-swf.git",
"purescript-aws-transcribeservice": "https://github.com/purescript-aws-sdk/purescript-aws-transcribeservice.git",
"purescript-aws-translate": "https://github.com/purescript-aws-sdk/purescript-aws-translate.git",
"purescript-aws-waf": "https://github.com/purescript-aws-sdk/purescript-aws-waf.git",
"purescript-aws-wafregional": "https://github.com/purescript-aws-sdk/purescript-aws-wafregional.git",
"purescript-aws-workdocs": "https://github.com/purescript-aws-sdk/purescript-aws-workdocs.git",
"purescript-aws-workmail": "https://github.com/purescript-aws-sdk/purescript-aws-workmail.git",
"purescript-aws-workspaces": "https://github.com/purescript-aws-sdk/purescript-aws-workspaces.git",
"purescript-aws-xray": "https://github.com/purescript-aws-sdk/purescript-aws-xray.git",
"purescript-axios": "https://github.com/iarthstar/purescript-axios.git",
"purescript-b64": "https://github.com/menelaos/purescript-b64.git",
"purescript-backtrack": "https://github.com/juspay/purescript-backtrack.git",
"purescript-base": "https://github.com/purescript-deprecated/purescript-base.git",
"purescript-base-rationals": "https://github.com/herrzinter/purescript-base-rationals.git",
"purescript-base58": "https://github.com/throughnothing/purescript-base58.git",
"purescript-base64": "https://github.com/Thimoteus/purescript-base64.git",
"purescript-base64-2": "https://github.com/athanclark/purescript-base64.git",
"purescript-base64-codec": "https://github.com/AlexaDeWit/purescript-base64-codec.git",
"purescript-basic-auth": "https://github.com/oreshinya/purescript-basic-auth.git",
"purescript-batteries": "https://github.com/tfausak/purescript-batteries.git",
"purescript-bbcode-parser": "https://github.com/adarqui/purescript-bbcode-parser.git",
"purescript-behaviors": "https://github.com/paf31/purescript-behaviors.git",
"purescript-bench": "https://github.com/rightfold/purescript-bench.git",
"purescript-benchmark": "https://github.com/cyrbon/purescript-benchmark.git",
"purescript-benchotron": "https://github.com/hdgarrood/purescript-benchotron.git",
"purescript-bibimbap": "https://github.com/justinwoo/purescript-bibimbap.git",
"purescript-bifunctors": "https://github.com/purescript/purescript-bifunctors.git",
"purescript-big-integer": "https://github.com/athanclark/purescript-big-integer.git",
"purescript-bigints": "https://github.com/purescript-contrib/purescript-bigints.git",
"purescript-bignumber": "https://github.com/athanclark/purescript-bignumber.git",
"purescript-binary": "https://github.com/Unisay/purescript-binary.git",
"purescript-binary-integers": "https://github.com/Unisay/purescript-binary-integers.git",
"purescript-bingsu": "https://github.com/justinwoo/purescript-bingsu.git",
"purescript-bip39": "https://github.com/athanclark/purescript-bip39.git",
"purescript-birds": "https://github.com/awkure/purescript-birds.git",
"purescript-biscotti-cookie": "https://github.com/drewolson/purescript-biscotti-cookie.git",
"purescript-biscotti-session": "https://github.com/drewolson/purescript-biscotti-session.git",
"purescript-bismuth": "https://github.com/justinwoo/purescript-bismuth.git",
"purescript-bitstrings": "https://github.com/ethul/purescript-bitstrings.git",
"purescript-black-scholes": "https://github.com/vyorkin/purescript-black-scholes.git",
"purescript-blueprint": "https://github.com/atomicits/purescript-blueprint.git",
"purescript-bonjiri": "https://github.com/justinwoo/purescript-bonjiri.git",
"purescript-bonsai": "https://github.com/grmble/purescript-bonsai.git",
"purescript-boolean-eq": "https://github.com/Risto-Stevcev/purescript-boolean-eq.git",
"purescript-boomboom": "https://github.com/paluh/purescript-boomboom.git",
"purescript-boomerang": "https://github.com/paluh/purescript-boomerang.git",
"purescript-bound": "https://github.com/benjamin-hodgson/purescript-bound.git",
"purescript-bouzuya-http-method": "https://github.com/bouzuya/purescript-bouzuya-http-method.git",
"purescript-bouzuya-http-status-code": "https://github.com/bouzuya/purescript-bouzuya-http-status-code.git",
"purescript-bower-json": "https://github.com/klntsky/purescript-bower-json.git",
"purescript-boxes": "https://github.com/cdepillabout/purescript-boxes.git",
"purescript-bq": "https://github.com/juspay/purescript-bq.git",
"purescript-browser-cookies": "https://github.com/vilu/purescript-browser-cookies.git",
"purescript-browser-sniffer": "https://github.com/CapillarySoftware/purescript-browser-sniffer.git",
"purescript-browserfeatures": "https://github.com/slamdata/purescript-browserfeatures.git",
"purescript-bucketchain": "https://github.com/Bucketchain/purescript-bucketchain.git",
"purescript-bucketchain-basic-auth": "https://github.com/Bucketchain/purescript-bucketchain-basic-auth.git",
"purescript-bucketchain-conditional": "https://github.com/Bucketchain/purescript-bucketchain-conditional.git",
"purescript-bucketchain-cors": "https://github.com/Bucketchain/purescript-bucketchain-cors.git",
"purescript-bucketchain-csrf": "https://github.com/Bucketchain/purescript-bucketchain-csrf.git",
"purescript-bucketchain-header-utils": "https://github.com/Bucketchain/purescript-bucketchain-header-utils.git",
"purescript-bucketchain-health": "https://github.com/Bucketchain/purescript-bucketchain-health.git",
"purescript-bucketchain-history-api-fallback": "https://github.com/Bucketchain/purescript-bucketchain-history-api-fallback.git",
"purescript-bucketchain-logger": "https://github.com/Bucketchain/purescript-bucketchain-logger.git",
"purescript-bucketchain-secure": "https://github.com/Bucketchain/purescript-bucketchain-secure.git",
"purescript-bucketchain-simple-api": "https://github.com/Bucketchain/purescript-bucketchain-simple-api.git",
"purescript-bucketchain-sslify": "https://github.com/Bucketchain/purescript-bucketchain-sslify.git",
"purescript-bucketchain-static": "https://github.com/Bucketchain/purescript-bucketchain-static.git",
"purescript-bulma": "https://github.com/sectore/purescript-bulma.git",
"purescript-byte-codec": "https://github.com/athanclark/purescript-byte-codec.git",
"purescript-bytestrings": "https://github.com/rightfold/purescript-bytestrings.git",
"purescript-c3": "https://github.com/joneshf/purescript-c3.git",
"purescript-call-by-name": "https://github.com/natefaubion/purescript-call-by-name.git",
"purescript-calpis": "https://github.com/justinwoo/purescript-calpis.git",
"purescript-camanjs": "https://github.com/m3tti/purescript-camanjs.git",
"purescript-canvas": "https://github.com/purescript-web/purescript-canvas.git",
"purescript-canvas-action": "https://github.com/artemisSystem/purescript-canvas-action.git",
"purescript-canvas-geometry": "https://github.com/Ebmtranceboy/purescript-canvas-geometry.git",
"purescript-carpenter": "https://github.com/arthurxavierx/purescript-carpenter.git",
"purescript-carpenter-router": "https://github.com/arthurxavierx/purescript-carpenter-router.git",
"purescript-cartesian": "https://github.com/Ebmtranceboy/purescript-cartesian.git",
"purescript-case-insensitive": "https://github.com/rightfold/purescript-case-insensitive.git",
"purescript-cast": "https://github.com/Risto-Stevcev/purescript-cast.git",
"purescript-catenable-lists": "https://github.com/purescript/purescript-catenable-lists.git",
"purescript-causal-graphs": "https://github.com/colehaus/purescript-causal-graphs.git",
"purescript-chai": "https://github.com/CapillarySoftware/purescript-chai.git",
"purescript-chalk": "https://github.com/joneshf/purescript-chalk.git",
"purescript-chalky": "https://github.com/slamdata/purescript-chalky.git",
"purescript-channels": "https://github.com/purescript-deprecated/purescript-channels.git",
"purescript-chanpon": "https://github.com/justinwoo/purescript-chanpon.git",
"purescript-chanterelle": "https://github.com/f-o-a-m/chanterelle.git",
"purescript-chapagetti": "https://github.com/justinwoo/purescript-chapagetti.git",
"purescript-charm": "https://github.com/dariooddenino/purescript-charm.git",
"purescript-chartjs": "https://github.com/benkolera/purescript-chartjs.git",
"purescript-checked-exceptions": "https://github.com/natefaubion/purescript-checked-exceptions.git",
"purescript-cheerio": "https://github.com/icyrockcom/purescript-cheerio.git",
"purescript-cherry": "https://github.com/oreshinya/purescript-cherry.git",
"purescript-chirashi": "https://github.com/justinwoo/purescript-chirashi.git",
"purescript-choco-pie": "https://github.com/justinwoo/purescript-choco-pie.git",
"purescript-chosen": "https://github.com/michael-swan/purescript-chosen.git",
"purescript-chosen-halogen": "https://github.com/michael-swan/purescript-chosen-halogen.git",
"purescript-chrono": "https://github.com/rightfold/purescript-chrono.git",
"purescript-clappr": "https://github.com/paluh/purescript-clappr.git",
"purescript-client-routing": "https://github.com/philopon/purescript-client-routing.git",
"purescript-clipboard": "https://github.com/slamdata/purescript-clipboard.git",
"purescript-clock": "https://github.com/jacereda/purescript-clock.git",
"purescript-codec": "https://github.com/garyb/purescript-codec.git",
"purescript-codec-argonaut": "https://github.com/garyb/purescript-codec-argonaut.git",
"purescript-codec-ejson": "https://github.com/slamdata/purescript-codec-ejson.git",
"purescript-coercible": "https://github.com/thimoteus/purescript-coercible.git",
"purescript-coercions": "https://github.com/PipocaQuemada/purescript-coercions.git",
"purescript-cofree-react-router": "https://github.com/coot/purescript-cofree-react-router.git",
"purescript-colehaus-graphs": "https://github.com/colehaus/purescript-graphs.git",
"purescript-colehaus-lattice": "https://github.com/colehaus/purescript-lattice.git",
"purescript-colehaus-properties": "https://github.com/colehaus/purescript-properties.git",
"purescript-color-palettes": "https://github.com/slamdata/purescript-color-palettes.git",
"purescript-colorpalettepicker-halogen": "https://github.com/slamdata/purescript-colorpalettepicker-halogen.git",
"purescript-colorpicker-halogen": "https://github.com/slamdata/purescript-colorpicker-halogen.git",
"purescript-colors": "https://github.com/purescript-contrib/purescript-colors.git",
"purescript-combinators": "https://github.com/awkure/purescript-combinators.git",
"purescript-compact": "https://github.com/rightfold/purescript-compact.git",
"purescript-complex": "https://github.com/matthieubulte/purescript-complex.git",
"purescript-concur-core": "https://github.com/purescript-concur/purescript-concur-core.git",
"purescript-concur-react": "https://github.com/purescript-concur/purescript-concur-react.git",
"purescript-concurrent": "https://github.com/joneshf/purescript-concurrent.git",
"purescript-concurrent-queues": "https://github.com/purescript-contrib/purescript-concurrent-queues.git",
"purescript-conditional": "https://github.com/purescripters/purescript-conditional.git",
"purescript-config": "https://github.com/TinkerTravel/purescript-config.git",
"purescript-config2": "https://github.com/justinwoo/purescript-config2.git",
"purescript-confusables": "https://github.com/michaelficarra/purescript-confusables.git",
"purescript-cons": "https://github.com/joneshf/purescript-cons.git",
"purescript-consable": "https://github.com/klntsky/purescript-consable.git",
"purescript-console": "https://github.com/purescript/purescript-console.git",
"purescript-console-browser-specific": "https://github.com/matthewleon/purescript-console-browser-specific.git",
"purescript-console-foreign": "https://github.com/mikemckibben/purescript-console-foreign.git",
"purescript-console-lifted": "https://github.com/matthewleon/purescript-console-lifted.git",
"purescript-console-timer": "https://github.com/matthewleon/purescript-console-timer.git",
"purescript-const": "https://github.com/purescript/purescript-const.git",
"purescript-constraint-kanren": "https://github.com/raduom/purescript-constraint-kanren.git",
"purescript-context": "https://github.com/Fresheyeball/purescript-context.git",
"purescript-contravariant": "https://github.com/purescript/purescript-contravariant.git",
"purescript-control": "https://github.com/purescript/purescript-control.git",
"purescript-conveyor": "https://github.com/oreshinya/purescript-conveyor.git",
"purescript-conveyor-basic-auth": "https://github.com/oreshinya/purescript-conveyor-basic-auth.git",
"purescript-conveyor-cors": "https://github.com/oreshinya/purescript-conveyor-cors.git",
"purescript-conveyor-health": "https://github.com/oreshinya/purescript-conveyor-health.git",
"purescript-cookie": "https://github.com/oreshinya/purescript-cookie.git",
"purescript-cookies": "https://github.com/dbushenko/purescript-cookies.git",
"purescript-coproducts": "https://github.com/purescript-deprecated/purescript-coproducts.git",
"purescript-coroutines": "https://github.com/purescript-contrib/purescript-coroutines.git",
"purescript-couchdb-aff-coroutines": "https://github.com/beckyconning/purescript-couchdb-aff-coroutines.git",
"purescript-cowlaser": "https://github.com/rightfold/purescript-cowlaser.git",
"purescript-creditcard-validation": "https://github.com/typebastion/purescript-creditcard-validation.git",
"purescript-crypt-nacl": "https://github.com/throughnothing/purescript-crypt-nacl.git",
"purescript-crypto": "https://github.com/oreshinya/purescript-crypto.git",
"purescript-css": "https://github.com/purescript-contrib/purescript-css.git",
"purescript-css-bem": "https://github.com/aykl/purescript-css-bem.git",
"purescript-css-properties": "https://github.com/nonbili/purescript-css-properties.git",
"purescript-css-validate": "https://github.com/nonbili/purescript-css-validate.git",
"purescript-cssom": "https://github.com/danieljharvey/purescript-cssom.git",
"purescript-csv": "https://github.com/nwolverson/purescript-csv.git",
"purescript-csv-rk": "https://github.com/robkuz/purescript-csv.git",
"purescript-cycle": "https://github.com/TylorS/purescript-cycle.git",
"purescript-cycle-run": "https://github.com/justinwoo/purescript-cycle-run.git",
"purescript-d3": "https://github.com/pelotom/purescript-d3.git",
"purescript-data-algebrae": "https://github.com/i-am-tom/purescript-data-algebrae.git",
"purescript-data-default": "https://github.com/nkly/purescript-data-default.git",
"purescript-dataframe": "https://github.com/gabysbrain/purescript-dataframe.git",
"purescript-datareify": "https://github.com/alexknvl/purescript-datareify.git",
"purescript-date-fns": "https://github.com/tancc/purescript-date-fns.git",
"purescript-date-helpers": "https://github.com/adarqui/purescript-date-helpers.git",
"purescript-datetime": "https://github.com/purescript/purescript-datetime.git",
"purescript-datetime-iso": "https://github.com/jmackie/purescript-datetime-iso.git",
"purescript-day": "https://github.com/paf31/purescript-day.git",
"purescript-debug": "https://github.com/garyb/purescript-debug.git",
"purescript-debug-foreign": "https://github.com/CapillarySoftware/purescript-debug-foreign.git",
"purescript-debugger": "https://github.com/paf31/purescript-debugger.git",
"purescript-decimal": "https://github.com/Ambrosia/purescript-decimal.git",
"purescript-decimals": "https://github.com/sharkdp/purescript-decimals.git",
"purescript-decision-theory": "https://github.com/colehaus/purescript-decision-theory.git",
"purescript-default": "https://github.com/chrisdotcode/purescript-default.git",
"purescript-density-codensity": "https://github.com/rightfold/purescript-density-codensity.git",
"purescript-des": "https://github.com/jacereda/purescript-des.git",
"purescript-diff": "https://github.com/athanclark/purescript-diff.git",
"purescript-difference-containers": "https://github.com/klntsky/purescript-difference-containers.git",
"purescript-difflists": "https://github.com/Thimoteus/purescript-difflists.git",
"purescript-digraph": "https://github.com/nullobject/purescript-digraph.git",
"purescript-dispatcher-react": "https://github.com/doolse/purescript-dispatcher-react.git",
"purescript-distributions": "https://github.com/paf31/purescript-distributions.git",
"purescript-distributive": "https://github.com/purescript/purescript-distributive.git",
"purescript-dom": "https://github.com/purescript-deprecated/purescript-dom.git",
"purescript-dom-classy": "https://github.com/garyb/purescript-dom-classy.git",
"purescript-dom-delegator": "https://github.com/philopon/purescript-dom-delegator.git",
"purescript-dom-filereader": "https://github.com/nwolverson/purescript-dom-filereader.git",
"purescript-dom-indexed": "https://github.com/purescript-halogen/purescript-dom-indexed.git",
"purescript-dom-keyboard": "https://github.com/slamdata/purescript-dom-keyboard.git",
"purescript-dom-parser": "https://github.com/toastal/purescript-dom-parser.git",
"purescript-dominator-core": "https://github.com/lazamar/purescript-dominator-core.git",
"purescript-domparser": "https://github.com/Fresheyeball/purescript-domparser.git",
"purescript-dotenv": "https://github.com/nsaunders/purescript-dotenv.git",
"purescript-dotlang": "https://github.com/csicar/purescript-dotlang.git",
"purescript-drawing": "https://github.com/paf31/purescript-drawing.git",
"purescript-dual-tree": "https://github.com/AidanDelaney/purescript-dual-tree.git",
"purescript-dynamic": "https://github.com/raduom/purescript-dynamic.git",
"purescript-dynamodb": "https://github.com/berdario/purescript-dynamodb.git",
"purescript-each": "https://github.com/joneshf/purescript-each.git",
"purescript-easings": "https://github.com/i-am-tom/purescript-easings.git",
"purescript-easy-alexa": "https://github.com/twitchard/purescript-easy-alexa.git",
"purescript-easy-ffi": "https://github.com/pelotom/purescript-easy-ffi.git",
"purescript-easyimage": "https://github.com/slamdata/purescript-easyimage.git",
"purescript-ebyam": "https://github.com/adarqui/purescript-ebyam.git",
"purescript-echarts": "https://github.com/slamdata/purescript-echarts.git",
"purescript-eff": "https://github.com/purescript-deprecated/purescript-eff.git",
"purescript-eff-functions": "https://github.com/hdgarrood/purescript-eff-functions.git",
"purescript-eff-object": "https://github.com/hdgarrood/purescript-eff-object.git",
"purescript-effect": "https://github.com/purescript/purescript-effect.git",
"purescript-either": "https://github.com/purescript/purescript-either.git",
"purescript-ejson": "https://github.com/slamdata/purescript-ejson.git",
"purescript-electron": "https://github.com/cjduncana/purescript-electron.git",
"purescript-elm-basics": "https://github.com/brainrake/purescript-elm-basics.git",
"purescript-elm-color": "https://github.com/brainrake/purescript-elm-color.git",
"purescript-elm-compat": "https://github.com/pselm/core.git",
"purescript-elmish": "https://github.com/collegevine/purescript-elmish.git",
"purescript-elmish-html": "https://github.com/collegevine/purescript-elmish-html.git",
"purescript-email-validate": "https://github.com/cdepillabout/purescript-email-validate.git",
"purescript-emmet": "https://github.com/kRITZCREEK/purescript-emmet.git",
"purescript-emo8": "https://github.com/opyapeus/purescript-emo8.git",
"purescript-emoji-splitter": "https://github.com/opyapeus/purescript-emoji-splitter.git",
"purescript-enchantjs": "https://github.com/algas/purescript-enchantjs.git",
"purescript-encoding": "https://github.com/menelaos/purescript-encoding.git",
"purescript-endpoints-express": "https://github.com/FrigoEU/purescript-endpoints-express.git",
"purescript-endpoints-websocket": "https://github.com/FrigoEU/purescript-endpoints-websocket.git",
"purescript-enums": "https://github.com/purescript/purescript-enums.git",
"purescript-enzyme": "https://github.com/coot/purescript-enzyme.git",
"purescript-equatable-functions": "https://github.com/rgrempel/purescript-equatable-functions.git",
"purescript-error": "https://github.com/bklaric/purescript-error.git",
"purescript-errors": "https://github.com/passy/purescript-errors.git",
"purescript-es6-symbols": "https://github.com/Risto-Stevcev/purescript-es6-symbols.git",
"purescript-eth-core": "https://github.com/f-o-a-m/purescript-eth-core.git",
"purescript-ethereum": "https://github.com/blockmason/purescript-ethereum.git",
"purescript-ethereum-client": "https://github.com/Unisay/purescript-ethereum-client.git",
"purescript-eulalie": "https://github.com/bodil/purescript-eulalie.git",
"purescript-eval": "https://github.com/rightfold/purescript-eval.git",
"purescript-event": "https://github.com/paf31/purescript-event.git",
"purescript-events": "https://github.com/CapillarySoftware/purescript-events.git",
"purescript-exceptions": "https://github.com/purescript/purescript-exceptions.git",
"purescript-execa": "https://github.com/ethul/purescript-execa.git",
"purescript-exists": "https://github.com/purescript/purescript-exists.git",
"purescript-exists-eq": "https://github.com/rgrempel/purescript-exists-eq.git",
"purescript-exitcodes": "https://github.com/Risto-Stevcev/purescript-exitcodes.git",
"purescript-expect-inferred": "https://github.com/justinwoo/purescript-expect-inferred.git",
"purescript-express": "https://github.com/purescript-express/purescript-express.git",
"purescript-express-passport": "https://github.com/aykl/purescript-express-passport.git",
"purescript-extensions": "https://github.com/mgmeier/purescript-extensions.git",
"purescript-externs-check": "https://github.com/hdgarrood/purescript-externs-check.git",
"purescript-facebook": "https://github.com/Unisay/purescript-facebook.git",
"purescript-fancy-operators": "https://github.com/Thimoteus/purescript-fancy-operators.git",
"purescript-fedger": "https://github.com/brakmic/purescript-fedger.git",
"purescript-fetch-api": "https://github.com/iarthstar/purescript-fetch-api.git",
"purescript-fetch-free": "https://github.com/ethul/purescript-fetch-free.git",
"purescript-ffi-props": "https://github.com/justinwoo/purescript-ffi-props.git",
"purescript-ffi-utils": "https://github.com/Risto-Stevcev/purescript-ffi-utils.git",
"purescript-filterable": "https://github.com/purescript/purescript-filterable.git",
"purescript-filterables": "https://github.com/Risto-Stevcev/purescript-filterables.git",
"purescript-firebase": "https://github.com/mostalive/purescript-firebase.git",
"purescript-firebase-client": "https://github.com/TinkerTravel/purescript-firebase-client.git",
"purescript-fixed-points": "https://github.com/purescript-contrib/purescript-fixed-points.git",
"purescript-fixed-precision": "https://github.com/rowtype-yoga/purescript-fixed-precision.git",
"purescript-flame": "https://github.com/easafe/purescript-flame.git",
"purescript-flare": "https://github.com/sharkdp/purescript-flare.git",
"purescript-flaredoc": "https://github.com/sharkdp/purescript-flaredoc.git",
"purescript-flatpickr": "https://github.com/themoritz/purescript-flatpickr.git",
"purescript-float32": "https://github.com/purescript-contrib/purescript-float32.git",
"purescript-flow": "https://github.com/juspay/purescript-flow.git",
"purescript-flow-id": "https://github.com/i-am-the-slime/purescript-flow-id.git",
"purescript-flux-store": "https://github.com/KolesnichenkoDS/purescript-flux-store.git",
"purescript-focus-ui": "https://github.com/mbid/purescript-focus-ui.git",
"purescript-foldable-traversable": "https://github.com/purescript/purescript-foldable-traversable.git",
"purescript-folds": "https://github.com/paf31/purescript-folds.git",
"purescript-foreign": "https://github.com/purescript/purescript-foreign.git",
"purescript-foreign-callbacks": "https://github.com/fluffynukeit/purescript-foreign-callbacks.git",
"purescript-foreign-clone": "https://github.com/jutaro/purescript-foreign-clone.git",
"purescript-foreign-datetime": "https://github.com/berdario/purescript-foreign-datetime.git",
"purescript-foreign-extra": "https://github.com/adarqui/purescript-foreign.git",
"purescript-foreign-generic": "https://github.com/paf31/purescript-foreign-generic.git",
"purescript-foreign-helpers": "https://github.com/adarqui/purescript-foreign-helpers.git",
"purescript-foreign-lens": "https://github.com/paf31/purescript-foreign-lens.git",
"purescript-foreign-object": "https://github.com/purescript/purescript-foreign-object.git",
"purescript-foreign-options": "https://github.com/fluffynukeit/purescript-foreign-options.git",
"purescript-fork": "https://github.com/purescript-contrib/purescript-fork.git",
"purescript-form-decoder": "https://github.com/amderbar/purescript-form-decoder.git",
"purescript-form-urlencoded": "https://github.com/purescript-contrib/purescript-form-urlencoded.git",
"purescript-format": "https://github.com/sharkdp/purescript-format.git",
"purescript-format-nix": "https://github.com/justinwoo/format-nix.git",
"purescript-formatters": "https://github.com/purescript-contrib/purescript-formatters.git",
"purescript-formatting": "https://github.com/krisajenkins/purescript-formatting.git",
"purescript-formless-aj": "https://github.com/ajnsit/purescript-formless-independent.git",
"purescript-formulate": "https://github.com/garyb/purescript-formulate.git",
"purescript-free": "https://github.com/purescript/purescript-free.git",
"purescript-free-alt": "https://github.com/Risto-Stevcev/purescript-free-alt.git",
"purescript-free-alternative": "https://github.com/Risto-Stevcev/purescript-free-alternative.git",
"purescript-free-canvas": "https://github.com/paf31/purescript-free-canvas.git",
"purescript-free-group": "https://github.com/hrb90/purescript-free-group.git",
"purescript-free-monadplus": "https://github.com/Risto-Stevcev/purescript-free-monadplus.git",
"purescript-freeap": "https://github.com/ethul/purescript-freeap.git",
"purescript-freearr": "https://github.com/ethul/purescript-freearr.git",
"purescript-freedom": "https://github.com/purescript-freedom/purescript-freedom.git",
"purescript-freedom-now": "https://github.com/purescript-freedom/purescript-freedom-now.git",
"purescript-freedom-portal": "https://github.com/purescript-freedom/purescript-freedom-portal.git",
"purescript-freedom-router": "https://github.com/purescript-freedom/purescript-freedom-router.git",
"purescript-freedom-transition": "https://github.com/purescript-freedom/purescript-freedom-transition.git",
"purescript-freedom-virtualized": "https://github.com/purescript-freedom/purescript-freedom-virtualized.git",
"purescript-freedom-window-resize": "https://github.com/purescript-freedom/purescript-freedom-window-resize.git",
"purescript-freet": "https://github.com/purescript-contrib/purescript-freet.git",
"purescript-function-checked": "https://github.com/ddfisher/purescript-function-checked.git",
"purescript-function-eff": "https://github.com/fixplz/purescript-function-eff.git",
"purescript-function-run": "https://github.com/fixplz/purescript-function-run.git",
"purescript-functional-maps": "https://github.com/Thimoteus/purescript-functional-maps.git",
"purescript-functions": "https://github.com/purescript/purescript-functions.git",
"purescript-functor-compose": "https://github.com/DavidHarrison/purescript-functor-compose.git",
"purescript-functor-coproducts": "https://github.com/purescript-deprecated/purescript-functor-coproducts.git",
"purescript-functor-products": "https://github.com/purescript-deprecated/purescript-functor-products.git",
"purescript-functor-vector": "https://github.com/philzook58/purescript-functor-vector.git",
"purescript-functor1": "https://github.com/garyb/purescript-functor1.git",
"purescript-functors": "https://github.com/purescript/purescript-functors.git",
"purescript-fussy": "https://github.com/garyb/purescript-fussy.git",
"purescript-fuzzy": "https://github.com/citizennet/purescript-fuzzy.git",
"purescript-game": "https://github.com/artemisSystem/purescript-game.git",
"purescript-gametree": "https://github.com/sharkdp/purescript-gametree.git",
"purescript-gdp": "https://github.com/colehaus/purescript-gdp.git",
"purescript-gejang": "https://github.com/justinwoo/purescript-gejang.git",
"purescript-gen": "https://github.com/purescript/purescript-gen.git",
"purescript-generic-graphviz": "https://github.com/csicar/purescript-generic-graphviz.git",
"purescript-generics": "https://github.com/purescript-deprecated/purescript-generics.git",
"purescript-generics-rep": "https://github.com/purescript-deprecated/purescript-generics-rep.git",
"purescript-generics-rep-optics": "https://github.com/LiamGoodacre/purescript-generics-rep-optics.git",
"purescript-geom": "https://github.com/bodil/purescript-geom.git",
"purescript-geometry": "https://github.com/Fresheyeball/purescript-geometry.git",
"purescript-github-corners": "https://github.com/yehzhang/purescript-github-corners.git",
"purescript-glitter": "https://github.com/hrb90/purescript-glitter.git",
"purescript-globals": "https://github.com/purescript-deprecated/purescript-globals.git",
"purescript-globals-safe": "https://github.com/nsaunders/purescript-globals-safe.git",
"purescript-gm": "https://github.com/kofno/purescript-gm.git",
"purescript-gomtang-basic": "https://github.com/justinwoo/purescript-gomtang-basic.git",
"purescript-google-auth": "https://github.com/FrigoEU/purescript-google-auth.git",
"purescript-google-cloud-datastore": "https://github.com/jamesthompson/purescript-google-cloud-datastore.git",
"purescript-graphics-vis": "https://github.com/paf31/purescript-graphics-vis.git",
"purescript-graphql": "https://github.com/hendrikniemann/purescript-graphql.git",
"purescript-graphs": "https://github.com/purescript/purescript-graphs.git",
"purescript-graphviz": "https://github.com/csicar/purescript-graphviz.git",
"purescript-group": "https://github.com/morganthomas/purescript-group.git",
"purescript-gun": "https://github.com/timdeputter/purescript-gun.git",
"purescript-halogen": "https://github.com/purescript-halogen/purescript-halogen.git",
"purescript-halogen-bootstrap": "https://github.com/slamdata/purescript-halogen-bootstrap.git",
"purescript-halogen-bootstrap4": "https://github.com/mschristiansen/purescript-halogen-bootstrap4.git",
"purescript-halogen-bulma": "https://github.com/ersocon/purescript-halogen-bulma.git",
"purescript-halogen-calendar-datepicker": "https://github.com/twitchard/purescript-halogen-calendar-datepicker.git",
"purescript-halogen-css": "https://github.com/purescript-halogen/purescript-halogen-css.git",
"purescript-halogen-datepicker": "https://github.com/slamdata/purescript-halogen-datepicker.git",
"purescript-halogen-day-picker": "https://github.com/rnons/purescript-halogen-day-picker.git",
"purescript-halogen-dialog": "https://github.com/brunjlar/purescript-halogen-dialog.git",
"purescript-halogen-driver": "https://github.com/joneshf/purescript-halogen-driver.git",
"purescript-halogen-echarts": "https://github.com/slamdata/purescript-halogen-echarts.git",
"purescript-halogen-formless": "https://github.com/thomashoneyman/purescript-halogen-formless.git",
"purescript-halogen-foundation": "https://github.com/slamdata/purescript-halogen-foundation.git",
"purescript-halogen-framework7": "https://github.com/polendri/purescript-halogen-framework7.git",
"purescript-halogen-html-component": "https://github.com/garyb/purescript-halogen-html-component.git",
"purescript-halogen-leaflet": "https://github.com/tdammers/purescript-halogen-leaflet.git",
"purescript-halogen-menu": "https://github.com/slamdata/purescript-halogen-menu.git",
"purescript-halogen-monaco": "https://github.com/maxhillaert/purescript-halogen-monaco.git",
"purescript-halogen-proxy": "https://github.com/slamdata/purescript-halogen-proxy.git",
"purescript-halogen-pure": "https://github.com/aij/purescript-halogen-pure.git",
"purescript-halogen-renderless": "https://github.com/purescript-deprecated/purescript-halogen-renderless.git",
"purescript-halogen-select": "https://github.com/citizennet/purescript-halogen-select.git",
"purescript-halogen-selects": "https://github.com/slamdata/purescript-halogen-selects.git",
"purescript-halogen-storybook": "https://github.com/rnons/purescript-halogen-storybook.git",
"purescript-halogen-svg": "https://github.com/AidanDelaney/purescript-halogen-svg.git",
"purescript-halogen-vdom": "https://github.com/purescript-halogen/purescript-halogen-vdom.git",
"purescript-halogen-vdom-string-renderer": "https://github.com/purescript-halogen/purescript-halogen-vdom-string-renderer.git",
"purescript-halogen-virtual-dom": "https://github.com/purescript-halogen/purescript-halogen-virtual-dom.git",
"purescript-handlebars": "https://github.com/paf31/purescript-handlebars.git",
"purescript-handsontable": "https://github.com/themoritz/purescript-handsontable.git",
"purescript-hareactive": "https://github.com/funkia/purescript-hareactive.git",
"purescript-has-js-rep": "https://github.com/justinwoo/purescript-has-js-rep.git",
"purescript-hash": "https://github.com/rightfold/purescript-hash.git",
"purescript-hashable": "https://github.com/paf31/purescript-hashable.git",
"purescript-haskell-iso": "https://github.com/athanclark/purescript-haskell-iso.git",
"purescript-heap": "https://github.com/tshinohara/purescript-heap.git",
"purescript-hedwig": "https://github.com/utkarshkukreti/purescript-hedwig.git",
"purescript-hertz": "https://github.com/utkarshkukreti/purescript-hertz.git",
"purescript-heterogeneous": "https://github.com/natefaubion/purescript-heterogeneous.git",
"purescript-hibachi": "https://github.com/justinwoo/purescript-kushikatsu.git",
"purescript-higher-order": "https://github.com/matthew-hilty/purescript-higher-order.git",
"purescript-history": "https://github.com/CapillarySoftware/purescript-history.git",
"purescript-hoist": "https://github.com/paf31/purescript-hoist.git",
"purescript-home-run-ball": "https://github.com/justinwoo/purescript-home-run-ball.git",
"purescript-homogeneous-objects": "https://github.com/Risto-Stevcev/purescript-homogeneous-objects.git",
"purescript-hot-shots": "https://github.com/mcoffin/purescript-hot-shots.git",
"purescript-hotteok": "https://github.com/justinwoo/purescript-hotteok.git",
"purescript-howl": "https://github.com/houli/purescript-howl.git",
"purescript-howler": "https://github.com/soupi/purescript-howler.git",
"purescript-html": "https://github.com/philopon/purescript-html.git",
"purescript-html-parser": "https://github.com/kindaro/purescript-html-parser.git",
"purescript-html-parser-halogen": "https://github.com/rnons/purescript-html-parser-halogen.git",
"purescript-http": "https://github.com/joneshf/purescript-http.git",
"purescript-http-headers": "https://github.com/garyb/purescript-http-headers.git",
"purescript-http-methods": "https://github.com/purescript-contrib/purescript-http-methods.git",
"purescript-http-types": "https://github.com/chrisdotcode/purescript-http-types.git",
"purescript-httpure": "https://github.com/citizennet/purescript-httpure.git",
"purescript-httpure-contrib-biscotti": "https://github.com/drewolson/purescript-httpure-contrib-biscotti.git",
"purescript-httpure-middleware": "https://github.com/joneshf/purescript-httpure-middleware.git",
"purescript-hubot": "https://github.com/mcoffin/purescript-hubot.git",
"purescript-hugenums": "https://github.com/Thimoteus/purescript-hugenums.git",
"purescript-hyper": "https://github.com/purescript-hyper/hyper.git",
"purescript-hyper-sslify": "https://github.com/anilanar/purescript-hyper-sslify.git",
"purescript-hyperdrive": "https://github.com/purescript-hyper/purescript-hyperdrive.git",
"purescript-hypertrout": "https://github.com/purescript-hyper/purescript-hypertrout.git",
"purescript-ide-purescript-core": "https://github.com/nwolverson/purescript-ide-purescript-core.git",
"purescript-identity": "https://github.com/purescript/purescript-identity.git",
"purescript-identy": "https://github.com/oreshinya/purescript-identy.git",
"purescript-idiomatic-node-buffer": "https://github.com/bklaric/purescript-idiomatic-node-buffer.git",
"purescript-idiomatic-node-crypto": "https://github.com/bklaric/purescript-idiomatic-node-crypto.git",
"purescript-idiomatic-node-errors": "https://github.com/bklaric/purescript-idiomatic-node-errors.git",
"purescript-idiomatic-node-events": "https://github.com/bklaric/purescript-idiomatic-node-events.git",
"purescript-idiomatic-node-http": "https://github.com/bklaric/purescript-idiomatic-node-http.git",
"purescript-idiomatic-node-process": "https://github.com/bklaric/purescript-idiomatic-node-process.git",
"purescript-idiomatic-node-server": "https://github.com/bklaric/purescript-idiomatic-node-server.git",
"purescript-idiomatic-node-stream": "https://github.com/bklaric/purescript-idiomatic-node-stream.git",
"purescript-ifrit": "https://github.com/KtorZPersonal/purescript-ifrit.git",
"purescript-imagediff": "https://github.com/slamdata/purescript-imagediff.git",
"purescript-impulse": "https://github.com/mitchdzugan/purescript-impulse.git",
"purescript-impur": "https://github.com/RuneBlaze/purescript-impur.git",
"purescript-in-purescript": "https://github.com/purescript/purescript-in-purescript.git",
"purescript-incremental": "https://github.com/sloosch/purescript-incremental.git",
"purescript-incremental-dom": "https://github.com/mbid/purescript-incremental-dom.git",
"purescript-incremental-functions": "https://github.com/paf31/purescript-incremental-functions.git",
"purescript-index": "https://github.com/joneshf/purescript-index.git",
"purescript-indexed": "https://github.com/srijs/purescript-indexed.git",
"purescript-indexed-monad": "https://github.com/garyb/purescript-indexed-monad.git",
"purescript-indexed-nonempty": "https://github.com/colehaus/purescript-indexed-nonempty.git",
"purescript-indexeddb": "https://github.com/truqu/purescript-indexeddb.git",
"purescript-inefficiency": "https://github.com/rightfold/purescript-inefficiency.git",
"purescript-infinite-list": "https://github.com/robertmassaioli/purescript-infinite-list.git",
"purescript-infinite-lists": "https://github.com/thimoteus/purescript-infinite-lists.git",
"purescript-inflection": "https://github.com/athanclark/purescript-inflection.git",
"purescript-information": "https://github.com/colehaus/purescript-information.git",
"purescript-inject": "https://github.com/purescript-deprecated/purescript-inject.git",
"purescript-int-53": "https://github.com/rgrempel/purescript-int-53.git",
"purescript-integers": "https://github.com/purescript/purescript-integers.git",
"purescript-intertwine": "https://github.com/collegevine/purescript-intertwine.git",
"purescript-intervals": "https://github.com/colehaus/purescript-intervals.git",
"purescript-intl": "https://github.com/coot/purescript-intl.git",
"purescript-intmap": "https://github.com/mgajda/purescript-intmap.git",
"purescript-intmaps": "https://github.com/tel/purescript-intmaps.git",
"purescript-invariant": "https://github.com/purescript/purescript-invariant.git",
"purescript-invertible-syntax": "https://github.com/paulyoung/purescript-invertible-syntax.git",
"purescript-io": "https://github.com/slamdata/purescript-io.git",
"purescript-io-lists": "https://github.com/rightfold/purescript-io-lists.git",
"purescript-ipfs-api": "https://github.com/chfi/purescript-ipfs-api.git",
"purescript-ips": "https://github.com/chrisdotcode/purescript-ips.git",
"purescript-isometric": "https://github.com/sharkdp/purescript-isometric.git",
"purescript-isomorphisms": "https://github.com/paf31/purescript-isomorphisms.git",
"purescript-isotypes": "https://github.com/LiamGoodacre/purescript-isotypes.git",
"purescript-iterable": "https://github.com/Risto-Stevcev/purescript-iterable.git",
"purescript-jack": "https://github.com/jacobstanley/purescript-jack.git",
"purescript-jajanmen": "https://github.com/justinwoo/purescript-jajanmen.git",
"purescript-jarilo": "https://github.com/bklaric/purescript-jarilo.git",
"purescript-jaws": "https://github.com/paluh/purescript-jaws.git",
"purescript-jest": "https://github.com/nonbili/purescript-jest.git",
"purescript-jolly-pong": "https://github.com/justinwoo/purescript-jolly-pong.git",
"purescript-jquery": "https://github.com/paf31/purescript-jquery.git",
"purescript-jquery-ajax": "https://github.com/wfaler/purescript-jquery-ajax.git",
"purescript-jquery-fancy": "https://github.com/colehaus/purescript-jquery-fancy.git",
"purescript-jquery-slider": "https://github.com/sportanova/purescript-jquery-slider.git",
"purescript-js": "https://github.com/jqyu/purescript-js.git",
"purescript-js-barcode": "https://github.com/narinari/purescript-js-barcode.git",
"purescript-js-barcode-halogen": "https://github.com/narinari/purescript-js-barcode-halogen.git",
"purescript-js-cookie": "https://github.com/athanclark/purescript-js-cookie.git",
"purescript-js-date": "https://github.com/purescript-contrib/purescript-js-date.git",
"purescript-js-history": "https://github.com/coot/purescript-js-history.git",
"purescript-js-timers": "https://github.com/purescript-contrib/purescript-js-timers.git",
"purescript-jsdiff": "https://github.com/chrisdotcode/purescript-jsdiff.git",
"purescript-json": "https://github.com/purescript/purescript-json.git",
"purescript-json-minify": "https://github.com/dgendill/purescript-json-minify.git",
"purescript-json-pointer": "https://github.com/reactormonk/purescript-json-pointer.git",
"purescript-json-schema": "https://github.com/felixmulder/purescript-json-schema.git",
"purescript-jsonrpc": "https://github.com/Unisay/purescript-jsonrpc.git",
"purescript-jtable": "https://github.com/slamdata/purescript-jtable.git",
"purescript-jwt": "https://github.com/menelaos/purescript-jwt.git",
"purescript-kancho": "https://github.com/justinwoo/purescript-kancho.git",
"purescript-kanren": "https://github.com/bodil/purescript-kanren.git",
"purescript-karma-test-unit": "https://github.com/coot/purescript-karma-test-unit.git",
"purescript-kefir": "https://github.com/philopon/purescript-kefir.git",
"purescript-key-based-diff": "https://github.com/oreshinya/purescript-key-based-diff.git",
"purescript-keys": "https://github.com/slamdata/purescript-keys.git",
"purescript-kishimen": "https://github.com/justinwoo/purescript-kishimen.git",
"purescript-kleene-logic": "https://github.com/Risto-Stevcev/purescript-kleene-logic.git",
"purescript-knockoutjs": "https://github.com/brunjlar/purescript-knockoutjs.git",
"purescript-kubernetes": "https://github.com/hoodunit/purescript-kubernetes.git",
"purescript-kushiyaki": "https://github.com/justinwoo/purescript-kushiyaki.git",
"purescript-lambs": "https://github.com/Glorp/purescript-lambs.git",
"purescript-language-purescript-ast": "https://github.com/cdepillabout/purescript-language-purescript-ast.git",
"purescript-language-purescript-base": "https://github.com/cdepillabout/purescript-language-purescript-base.git",
"purescript-language-purescript-parser-lexer": "https://github.com/cdepillabout/purescript-language-purescript-parser-lexer.git",
"purescript-lattice": "https://github.com/Risto-Stevcev/purescript-lattice.git",
"purescript-lazy": "https://github.com/purescript/purescript-lazy.git",
"purescript-lcg": "https://github.com/purescript/purescript-lcg.git",
"purescript-leaflet": "https://github.com/dysinger/purescript-leaflet.git",
"purescript-leaflet-tdammers": "https://github.com/tdammers/purescript-leaflet-tdammers.git",
"purescript-leafletjs": "https://github.com/slamdata/purescript-leafletjs.git",
"purescript-leafletjs-halogen": "https://github.com/slamdata/purescript-leafletjs-halogen.git",
"purescript-learn": "https://github.com/carldata/purescript-learn.git",
"purescript-leibniz": "https://github.com/paf31/purescript-leibniz.git",
"purescript-lenient-html-parser": "https://github.com/justinwoo/purescript-lenient-html-parser.git",
"purescript-lens": "https://github.com/purescript-deprecated/purescript-lens.git",
"purescript-lens-simple": "https://github.com/paf31/purescript-lens-simple.git",
"purescript-line-reader": "https://github.com/ChrisPenner/purescript-line-reader.git",
"purescript-line-wrapping": "https://github.com/slamdata/purescript-line-wrapping.git",
"purescript-linear-algebra": "https://github.com/klangner/purescript-linear-algebra.git",
"purescript-list-zipper": "https://github.com/DavidHarrison/purescript-list-zipper.git",
"purescript-lists": "https://github.com/purescript/purescript-lists.git",
"purescript-lists-fast": "https://github.com/paf31/purescript-lists-fast.git",
"purescript-lit-html": "https://github.com/nonbili/purescript-lit-html.git",
"purescript-lnforum-api": "https://github.com/adarqui/purescript-lnforum-api.git",
"purescript-lnforum-types": "https://github.com/adarqui/purescript-lnforum-types.git",
"purescript-localstorage": "https://github.com/eskimor/purescript-localstorage.git",
"purescript-location": "https://github.com/cdepillabout/purescript-location.git",
"purescript-logging": "https://github.com/rightfold/purescript-logging.git",
"purescript-logging-bunyan": "https://github.com/kika/purescript-logging-bunyan.git",
"purescript-logging-journald": "https://github.com/paluh/purescript-logging-journald.git",
"purescript-logic": "https://github.com/mlang/purescript-logic.git",
"purescript-logoot-core": "https://github.com/juspay/purescript-logoot-core.git",
"purescript-longs": "https://github.com/zapph/purescript-longs.git",
"purescript-lowdb": "https://github.com/NickSeagull/purescript-lowdb.git",
"purescript-luhncheck": "https://github.com/inventvenkat/luhncheck.git",
"purescript-lumi-components": "https://github.com/purescript-react/purescript-lumi-components.git",
"purescript-lunapark": "https://github.com/slamdata/purescript-lunapark.git",
"purescript-machines": "https://github.com/purescript-contrib/purescript-machines.git",
"purescript-mailgun": "https://github.com/piq9117/purescript-mailgun.git",
"purescript-makkori": "https://github.com/justinwoo/purescript-makkori.git",
"purescript-maps": "https://github.com/purescript-deprecated/purescript-maps.git",
"purescript-markdown": "https://github.com/slamdata/purescript-markdown.git",
"purescript-markdown-halogen": "https://github.com/slamdata/purescript-markdown-halogen.git",
"purescript-markdown-it": "https://github.com/nonbili/purescript-markdown-it.git",
"purescript-markdown-smolder": "https://github.com/alexmingoia/purescript-markdown-smolder.git",
"purescript-markup": "https://github.com/zrho/purescript-markup.git",
"purescript-markup-incdom": "https://github.com/zrho/purescript-markup-incdom.git",
"purescript-materialize": "https://github.com/yehzhang/purescript-materialize.git",
"purescript-math": "https://github.com/purescript-deprecated/purescript-math.git",
"purescript-math-equation": "https://github.com/athanclark/purescript-math-equation.git",
"purescript-mathbox": "https://github.com/rintcius/purescript-mathbox.git",
"purescript-mathjs": "https://github.com/robkuz/purescript-mathjs.git",
"purescript-matrices": "https://github.com/kRITZCREEK/purescript-matrices.git",
"purescript-matrix": "https://github.com/mgmeier/purescript-matrix.git",
"purescript-matryoshka": "https://github.com/purescript-contrib/purescript-matryoshka.git",
"purescript-maybe": "https://github.com/purescript/purescript-maybe.git",
"purescript-mdcss": "https://github.com/askasp/purescript-mdcss.git",
"purescript-media-types": "https://github.com/purescript-contrib/purescript-media-types.git",
"purescript-memoize": "https://github.com/paf31/purescript-memoize.git",
"purescript-merkle-tree": "https://github.com/alpacaaa/purescript-merkle-tree.git",
"purescript-mersenne": "https://github.com/matthewleon/purescript-mersenne.git",
"purescript-mesos": "https://github.com/mcoffin/purescript-mesos.git",
"purescript-metadata": "https://github.com/purescript/purescript-metadata.git",
"purescript-metajelo": "https://github.com/labordynamicsinstitute/purescript-metajelo.git",
"purescript-metajelo-ui-css-classes": "https://github.com/labordynamicsinstitute/metajelo-ui-css-classes.git",
"purescript-metajelo-web": "https://github.com/labordynamicsinstitute/metajelo-web.git",
"purescript-metric": "https://github.com/rightfold/purescript-metric.git",
"purescript-metrics": "https://github.com/abhin4v/purescript-metrics.git",
"purescript-midi": "https://github.com/newlandsvalley/purescript-midi.git",
"purescript-milkis": "https://github.com/justinwoo/purescript-milkis.git",
"purescript-mime": "https://github.com/Fresheyeball/purescript-mime.git",
"purescript-mini-redux": "https://github.com/ecliptic/purescript-mini-redux.git",
"purescript-minibench": "https://github.com/purescript/purescript-minibench.git",
"purescript-minimatch": "https://github.com/cryogenian/purescript-minimatch.git",
"purescript-minimist": "https://github.com/mcoffin/purescript-minimist.git",
"purescript-mkdirp": "https://github.com/joshuahhh/purescript-mkdirp.git",
"purescript-mmorph": "https://github.com/Thimoteus/purescript-mmorph.git",
"purescript-mocha": "https://github.com/CapillarySoftware/purescript-mocha.git",
"purescript-mochi": "https://github.com/justinwoo/purescript-mochi.git",
"purescript-mockfree": "https://github.com/slamdata/purescript-mockfree.git",
"purescript-modular-arithmetic": "https://github.com/hdgarrood/purescript-modular-arithmetic.git",
"purescript-modules": "https://github.com/TinkerTravel/purescript-modules.git",
"purescript-moldy": "https://github.com/LiamGoodacre/purescript-moldy.git",
"purescript-moment": "https://github.com/CapillarySoftware/purescript-moment.git",
"purescript-monaco": "https://github.com/maxhillaert/purescript-monaco.git",
"purescript-monad-control": "https://github.com/athanclark/purescript-monad-control.git",
"purescript-monad-eff": "https://github.com/purescript-deprecated/purescript-monad-eff.git",
"purescript-monad-fix": "https://github.com/zrho/purescript-monad-fix.git",
"purescript-monad-logger": "https://github.com/cprussin/purescript-monad-logger.git",
"purescript-monad-logger-writer": "https://github.com/cdepillabout/purescript-monad-logger-writer.git",
"purescript-monad-loops": "https://github.com/mlang/purescript-monad-loops.git",
"purescript-monad-supply": "https://github.com/cdepillabout/purescript-monad-supply.git",
"purescript-monad-unlift": "https://github.com/athanclark/purescript-monad-unlift.git",
"purescript-monadic-streams": "https://github.com/martyall/purescript-monadic-streams.git",
"purescript-monadplus-partial": "https://github.com/anttih/purescript-monadplus-partial.git",
"purescript-money": "https://github.com/TinkerTravel/purescript-money.git",
"purescript-mongodbf": "https://github.com/ethul/purescript-mongodbf.git",
"purescript-monoid": "https://github.com/purescript-deprecated/purescript-monoid.git",
"purescript-moonshine": "https://github.com/slamdata/purescript-moonshine.git",
"purescript-most": "https://github.com/Risto-Stevcev/purescript-most.git",
"purescript-mostly-dom": "https://github.com/TylorS/purescript-mostly-dom.git",
"purescript-mote": "https://github.com/garyb/purescript-mote.git",
"purescript-mote-runner": "https://github.com/slamdata/purescript-mote-runner.git",
"purescript-motsunabe": "https://github.com/justinwoo/purescript-motsunabe.git",
"purescript-msgpack": "https://github.com/athanclark/purescript-msgpack.git",
"purescript-msgpack-msgpack": "https://github.com/nonbili/purescript-msgpack-msgpack.git",
"purescript-mtproto": "https://github.com/goodmind/purescript-mtproto.git",
"purescript-multiset-hashed": "https://github.com/colehaus/purescript-multiset-hashed.git",
"purescript-murmur3": "https://github.com/paulyoung/purescript-murmur3.git",
"purescript-mustache": "https://github.com/svisser/purescript-mustache.git",
"purescript-mysql": "https://github.com/oreshinya/purescript-mysql.git",
"purescript-naporitan": "https://github.com/justinwoo/purescript-naporitan.git",
"purescript-naturals": "https://github.com/LiamGoodacre/purescript-naturals.git",
"purescript-navigator": "https://github.com/joneshf/purescript-navigator.git",
"purescript-neo4j": "https://github.com/corajr/purescript-neo4j.git",
"purescript-neodoc-parsing": "https://github.com/felixSchl/purescript-neodoc-parsing.git",
"purescript-neon": "https://github.com/tfausak/purescript-neon.git",
"purescript-neovim": "https://github.com/player-two/purescript-neovim.git",
"purescript-newtype": "https://github.com/purescript/purescript-newtype.git",
"purescript-newtype-operator": "https://github.com/cyrbon/purescript-newtype-operator.git",
"purescript-node-args": "https://github.com/purescript/purescript-node-args",
"purescript-node-bcrypt": "https://github.com/lpil/purescript-node-bcrypt.git",
"purescript-node-buffer": "https://github.com/purescript-node/purescript-node-buffer.git",
"purescript-node-child-process": "https://github.com/purescript-node/purescript-node-child-process.git",
"purescript-node-coroutines": "https://github.com/paf31/purescript-node-coroutines.git",
"purescript-node-crypto": "https://github.com/owickstrom/purescript-node-crypto.git",
"purescript-node-datagram": "https://github.com/brandonhamilton/purescript-node-datagram.git",
"purescript-node-datagrams": "https://github.com/jliuhtonen/purescript-node-datagrams.git",
"purescript-node-domain": "https://github.com/joneshf/purescript-node-domain.git",
"purescript-node-electron": "https://github.com/cprussin/purescript-node-electron.git",
"purescript-node-events": "https://github.com/joneshf/purescript-node-events.git",
"purescript-node-fs": "https://github.com/purescript-node/purescript-node-fs.git",
"purescript-node-fs-aff": "https://github.com/purescript-deprecated/purescript-node-fs-aff.git",
"purescript-node-fs-aff-extra": "https://github.com/dgendill/purescript-node-fs-aff-extra.git",
"purescript-node-fs-extra": "https://github.com/nonbili/purescript-node-fs-extra.git",
"purescript-node-github": "https://github.com/obmarg/purescript-node-github.git",
"purescript-node-he": "https://github.com/justinwoo/purescript-node-he.git",
"purescript-node-http": "https://github.com/purescript-node/purescript-node-http.git",
"purescript-node-irc": "https://github.com/hdgarrood/purescript-node-irc.git",
"purescript-node-mongodb": "https://github.com/SimonRichardson/purescript-node-mongodb.git",
"purescript-node-net": "https://github.com/purescript-node/purescript-node-net.git",
"purescript-node-openurl": "https://github.com/jacereda/purescript-node-openurl.git",
"purescript-node-os": "https://github.com/purescript-node/purescript-node-os.git",
"purescript-node-path": "https://github.com/purescript-node/purescript-node-path.git",
"purescript-node-postgres": "https://github.com/epost/purescript-node-postgres.git",
"purescript-node-process": "https://github.com/purescript-node/purescript-node-process.git",
"purescript-node-readable": "https://github.com/matthewleon/purescript-node-readable.git",
"purescript-node-readline": "https://github.com/purescript-node/purescript-node-readline.git",
"purescript-node-readline-aff": "https://github.com/ChrisPenner/purescript-node-readline-aff.git",
"purescript-node-readline-question": "https://github.com/i-am-tom/purescript-node-readline-question.git",
"purescript-node-redis": "https://github.com/SimonRichardson/purescript-node-redis.git",
"purescript-node-sentry": "https://github.com/TinkerTravel/purescript-node-sentry.git",
"purescript-node-sqlite3": "https://github.com/justinwoo/purescript-node-sqlite3.git",
"purescript-node-stream-buffers": "https://github.com/cprussin/purescript-node-stream-buffers.git",
"purescript-node-streams": "https://github.com/purescript-node/purescript-node-streams.git",
"purescript-node-telegram-bot-api": "https://github.com/justinwoo/purescript-node-telegram-bot-api.git",
"purescript-node-thunk": "https://github.com/andreypopp/purescript-node-thunk.git",
"purescript-node-url": "https://github.com/purescript-node/purescript-node-url.git",
"purescript-node-uuid": "https://github.com/joneshf/purescript-node-uuid.git",
"purescript-node-webkit": "https://github.com/joneshf/purescript-node-webkit.git",
"purescript-node-websocket": "https://github.com/juspay/purescript-node-websocket.git",
"purescript-nodemailer": "https://github.com/oreshinya/purescript-nodemailer.git",
"purescript-nodetrout": "https://github.com/nsaunders/purescript-nodetrout.git",
"purescript-noms": "https://github.com/yjpark/purescript-noms.git",
"purescript-nonbili-dom": "https://github.com/nonbili/purescript-nonbili-dom.git",
"purescript-nonempty": "https://github.com/purescript/purescript-nonempty.git",
"purescript-nonempty-arrays": "https://github.com/stevejb71/purescript-nonempty-array.git",
"purescript-now": "https://github.com/purescript-contrib/purescript-now.git",
"purescript-nullable": "https://github.com/purescript-contrib/purescript-nullable.git",
"purescript-nullable-safe": "https://github.com/rightfold/purescript-nullable-safe.git",
"purescript-number-format": "https://github.com/Jonplussed/purescript-number-format.git",
"purescript-numbers": "https://github.com/purescript/purescript-numbers.git",
"purescript-numbox": "https://github.com/rightfold/purescript-numbox.git",
"purescript-numerics": "https://github.com/Proclivis/purescript-numerics.git",
"purescript-numerics-012": "https://github.com/shmish111/purescript-numerics.git",
"purescript-nunjucks": "https://github.com/plippe/purescript-nunjucks.git",
"purescript-oak": "https://github.com/ehrenmurdick/purescript-oak.git",
"purescript-oak-ajax": "https://github.com/ehrenmurdick/purescript-oak-ajax.git",
"purescript-oak-debug": "https://github.com/ehrenmurdick/purescript-oak-debug.git",
"purescript-oboe": "https://github.com/joneshf/purescript-oboe.git",
"purescript-observable": "https://github.com/bodil/purescript-observable.git",
"purescript-observable-channel": "https://github.com/bodil/purescript-observable-channel.git",
"purescript-observable-classy": "https://github.com/Risto-Stevcev/purescript-observable-classy.git",
"purescript-observable-lift": "https://github.com/justinwoo/purescript-observable-lift.git",
"purescript-observable-time": "https://github.com/bodil/purescript-observable-time.git",
"purescript-ocelot": "https://github.com/citizennet/purescript-ocelot.git",
"purescript-ochadzuke": "https://github.com/justinwoo/purescript-ochadzuke.git",
"purescript-ogmarkup": "https://github.com/ogma-project/purescript-ogmarkup.git",
"purescript-ohyes": "https://github.com/justinwoo/purescript-ohyes.git",
"purescript-oidc-crypt-utils": "https://github.com/slamdata/purescript-oidc-crypt-utils.git",
"purescript-oo-ffi": "https://github.com/CapillarySoftware/purescript-oo-ffi.git",
"purescript-openwhisk": "https://github.com/yjpark/purescript-openwhisk.git",
"purescript-optic": "https://github.com/joneshf/purescript-optic.git",
"purescript-optic-ui": "https://github.com/zrho/purescript-optic-ui.git",
"purescript-optimizely-api": "https://github.com/berdario/purescript-optimizely-api.git",
"purescript-option": "https://github.com/joneshf/purescript-option.git",
"purescript-optional": "https://github.com/erisco/purescript-optional.git",
"purescript-options": "https://github.com/purescript-contrib/purescript-options.git",
"purescript-optlicative": "https://github.com/thimoteus/purescript-optlicative.git",
"purescript-optparse": "https://github.com/purescript-contrib/purescript-optparse.git",
"purescript-ordered-collections": "https://github.com/purescript/purescript-ordered-collections.git",
"purescript-orders": "https://github.com/purescript/purescript-orders.git",
"purescript-ordinals": "https://github.com/thimoteus/purescript-ordinals.git",
"purescript-org": "https://github.com/birdgg/purescript-org.git",
"purescript-outwatch": "https://github.com/OutWatch/purescript-outwatch.git",
"purescript-p5": "https://github.com/derektmueller/purescript-p5.git",
"purescript-pair": "https://github.com/parsonsmatt/purescript-pair.git",
"purescript-pairing": "https://github.com/paf31/purescript-pairing.git",
"purescript-pairs": "https://github.com/sharkdp/purescript-pairs.git",
"purescript-pako": "https://github.com/jacereda/purescript-pako.git",
"purescript-panda": "https://github.com/i-am-tom/purescript-panda.git",
"purescript-parallel": "https://github.com/purescript/purescript-parallel.git",
"purescript-parseint": "https://github.com/athanclark/purescript-parseint.git",
"purescript-parsers": "https://github.com/mlang/purescript-parsers.git",
"purescript-parsing": "https://github.com/purescript-contrib/purescript-parsing.git",
"purescript-parsing-extras": "https://github.com/dgendill/purescript-parsing-extras.git",
"purescript-partial": "https://github.com/purescript/purescript-partial.git",
"purescript-partial-isomorphisms": "https://github.com/paulyoung/purescript-partial-isomorphisms.git",
"purescript-partial-order": "https://github.com/colehaus/purescript-partial-order.git",
"purescript-path": "https://github.com/joneshf/purescript-path.git",
"purescript-pathy": "https://github.com/purescript-contrib/purescript-pathy.git",
"purescript-paxl": "https://github.com/jqyu/purescript-paxl.git",
"purescript-payload": "https://github.com/hoodunit/purescript-payload.git",
"purescript-periodic": "https://github.com/Lupino/purescript-periodic.git",
"purescript-permutations": "https://github.com/vmchale/ppp.git",
"purescript-pg": "https://github.com/bklaric/purescript-pg.git",
"purescript-pha": "https://github.com/gbagan/purescript-pha.git",
"purescript-phantom": "https://github.com/purescripters/purescript-phantom.git",
"purescript-phantomjs": "https://github.com/cxfreeio/purescript-phantomjs.git",
"purescript-phinajs": "https://github.com/hansel-no-kioku/purescript-phinajs.git",
"purescript-phoenix": "https://github.com/brandonhamilton/purescript-phoenix.git",
"purescript-photons": "https://github.com/slamdata/purescript-photons",
"purescript-pipe-op": "https://github.com/Risto-Stevcev/purescript-pipe-op.git",
"purescript-pipes": "https://github.com/felixschl/purescript-pipes.git",
"purescript-pipes-aff": "https://github.com/felixschl/purescript-pipes-aff.git",
"purescript-plaid-node": "https://github.com/piq9117/purescript-plaid-node.git",
"purescript-plan": "https://github.com/Lupino/purescript-plan.git",
"purescript-platform": "https://github.com/slamdata/purescript-platform.git",
"purescript-plottable": "https://github.com/atomicits/purescript-plottable.git",
"purescript-pointed-list": "https://github.com/paluh/purescript-pointed-list.git",
"purescript-polyform": "https://github.com/purescript-polyform/polyform.git",
"purescript-polyform-validators": "https://github.com/lambdaterms/purescript-polyform-validators.git",
"purescript-polymorphic-vectors": "https://github.com/artemisSystem/purescript-polymorphic-vectors.git",
"purescript-polynomials": "https://github.com/hdgarrood/purescript-polynomials.git",
"purescript-posix-types": "https://github.com/purescript-node/purescript-posix-types.git",
"purescript-postgresql-client": "https://github.com/rightfold/purescript-postgresql-client.git",
"purescript-pouchdb": "https://github.com/brakmic/purescript-pouchdb.git",
"purescript-pouchdb-ffi": "https://github.com/fehrenbach/purescript-pouchdb-ffi.git",
"purescript-pprint": "https://github.com/paf31/purescript-pprint.git",
"purescript-pqueue": "https://github.com/nullobject/purescript-pqueue.git",
"purescript-pray": "https://github.com/cryogenian/purescript-pray.git",
"purescript-precise": "https://github.com/purescript-contrib/purescript-precise.git",
"purescript-precise-datetime": "https://github.com/awakesecurity/purescript-precise-datetime.git",
"purescript-prelewd": "https://github.com/i-am-tom/purescript-prelewd.git",
"purescript-prelude": "https://github.com/purescript/purescript-prelude.git",
"purescript-presto": "https://github.com/juspay/purescript-presto.git",
"purescript-presto-backend": "https://github.com/juspay/purescript-presto-backend.git",
"purescript-prettier": "https://github.com/epicallan/purescript-prettier.git",
"purescript-prettier-printer": "https://github.com/paulyoung/purescript-prettier-printer.git",
"purescript-prng": "https://github.com/tlewowski/purescript-prng.git",
"purescript-proact": "https://github.com/alvart/purescript-proact.git",
"purescript-probability": "https://github.com/colehaus/purescript-probability.git",
"purescript-profunctor": "https://github.com/purescript/purescript-profunctor.git",
"purescript-profunctor-lenses": "https://github.com/purescript-contrib/purescript-profunctor-lenses.git",
"purescript-projections": "https://github.com/timdeputter/purescript-projections.git",
"purescript-promises": "https://github.com/thimoteus/purescript-promises.git",
"purescript-propel": "https://github.com/philzook58/purescript-propel.git",
"purescript-properties": "https://github.com/Risto-Stevcev/purescript-properties.git",
"purescript-proportion": "https://github.com/colehaus/purescript-proportion.git",
"purescript-proxy": "https://github.com/purescript-deprecated/purescript-proxy.git",
"purescript-proxying": "https://github.com/matthew-hilty/purescript-proxying.git",
"purescript-psa-utils": "https://github.com/natefaubion/purescript-psa-utils.git",
"purescript-psc-ide": "https://github.com/kRITZCREEK/purescript-psc-ide.git",
"purescript-psci-support": "https://github.com/purescript/purescript-psci-support.git",
"purescript-pseudo-random": "https://github.com/opyapeus/purescript-pseudo-random.git",
"purescript-pshendry-halogen": "https://github.com/polendri/purescript-pshendry-halogen.git",
"purescript-pspec": "https://github.com/philopon/purescript-pspec.git",
"purescript-puchitomato": "https://github.com/justinwoo/purescript-puchitomato.git",
"purescript-pure-css": "https://github.com/athanclark/purescript-pure-css.git",
"purescript-pure-style": "https://github.com/oreshinya/purescript-pure-style.git",
"purescript-purescript-compiler-backend-utilities": "https://github.com/rightfold/purescript-purescript-compiler-backend-utilities.git",
"purescript-purveyor": "https://github.com/paulyoung/purescript-purveyor.git",
"purescript-purview": "https://github.com/paf31/purescript-purview.git",
"purescript-pux": "https://github.com/alexmingoia/purescript-pux.git",
"purescript-pux-clappr": "https://github.com/paluh/purescript-pux-clappr.git",
"purescript-pux-css": "https://github.com/alexmingoia/pux-css.git",
"purescript-pux-devtool": "https://github.com/alexmingoia/pux-devtool.git",
"purescript-pux-document-title": "https://github.com/spencerjanssen/purescript-pux-document-title.git",
"purescript-pux-echarts": "https://github.com/tweag/purescript-pux-echarts.git",
"purescript-pux-form": "https://github.com/b123400/purescript-pux-form.git",
"purescript-pux-redux": "https://github.com/lightandlight/purescript-pux-redux.git",
"purescript-pux-router": "https://github.com/alvart/purescript-pux-router.git",
"purescript-pux-smolder-dom": "https://github.com/bodil/purescript-pux-smolder-dom.git",
"purescript-pux-spectacle": "https://github.com/megamaddu/purescript-pux-spectacle.git",
"purescript-pux-spectacle-codeslide": "https://github.com/megamaddu/purescript-pux-spectacle-codeslide.git",
"purescript-pux-undo": "https://github.com/parsonsmatt/purescript-pux-undo.git",
"purescript-puxing-bob": "https://github.com/paluh/purescript-puxing-bob.git",
"purescript-qrcode": "https://github.com/athanclark/purescript-qrcode.git",
"purescript-qrcode-js": "https://github.com/narinari/purescript-qrcode-js.git",
"purescript-qrcode-js-halogen": "https://github.com/narinari/purescript-qrcode-js-halogen.git",
"purescript-quantities": "https://github.com/sharkdp/purescript-quantities.git",
"purescript-quasar": "https://github.com/slamdata/purescript-quasar.git",
"purescript-quaternions": "https://github.com/hdgarrood/purescript-quaternions.git",
"purescript-query-params": "https://github.com/dgendill/purescript-query-params.git",
"purescript-querydsl": "https://github.com/Dretch/purescript-querydsl.git",
"purescript-queue": "https://github.com/athanclark/purescript-queue.git",
"purescript-quick-format": "https://github.com/matthewleon/purescript-quick-format.git",