-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
4548 lines (4548 loc) · 328 KB
/
manifest.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
{
"version": 1,
"locale": "en_US",
"platform": "4.3.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.81.0-1",
"Date": "2023-01-17",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Boost provides free peer-reviewed portable C++ source\nlibraries. A large part of Boost is provided as C++ template code\nwhich is resolved entirely at compile-time without linking. This\npackage aims to provide the most useful subset of Boost libraries\nfor template use among CRAN packages. By placing these libraries in\nthis package, we offer a more efficient distribution system for CRAN\nas replication of this code in the sources of other packages is\navoided. As of release 1.81.0-0, the following Boost libraries are\nincluded: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility'\n'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh,\nhttps://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2023-01-17 22:52:33 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-01-22 08:20:02 UTC",
"Built": "R 4.2.2; ; 2023-01-24 14:42:53 UTC; windows"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.28",
"Authors@R": "c(\nperson(\"Yihui\", \"Xie\", email = \"xie@yihui.name\", role = c(\"aut\", \"cre\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\"),\nperson(\"Xianying\", \"Tan\", role = \"aut\"),\nperson(\"JJ\", \"Allaire\", role = \"ctb\"),\nperson(\"Maximilian\", \"Girlich\", role = \"ctb\"),\nperson(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\nperson(\"Johannes\", \"Rauh\", role = \"ctb\"),\nperson(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\nperson(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\nperson(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\nperson(\"Alex\", \"Pickering\", role = c(\"ctb\")),\nperson(\"William\", \"Holmes\", role = c(\"ctb\")),\nperson(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\nperson(\"Andres\", \"Quintero\", role = c(\"ctb\")),\nperson(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Description": "Data objects in R can be rendered as HTML tables using the\nJavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n'DataTables' library has been included in this R package. The package name\n'DT' is an abbreviation of 'DataTables'.",
"URL": "https://github.com/rstudio/DT",
"BugReports": "https://github.com/rstudio/DT/issues",
"License": "GPL-3 | file LICENSE",
"Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), jsonlite (>=\n0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, future,\ntestit, tibble",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-05-17 13:56:11 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\nJoe Cheng [aut],\nXianying Tan [aut],\nJJ Allaire [ctb],\nMaximilian Girlich [ctb],\nGreg Freedman Ellis [ctb],\nJohannes Rauh [ctb],\nSpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\nBrian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\nLeon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\nBartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\nAlex Pickering [ctb],\nWilliam Holmes [ctb],\nMikko Marttila [ctb],\nAndres Quintero [ctb],\nStéphane Laurent [ctb],\nPosit Software, PBC [cph, fnd]",
"Repository": "CRAN",
"Date/Publication": "2023-05-18 11:22:37 UTC",
"Built": "R 4.3.0; ; 2023-05-18 19:03:55 UTC; windows"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-60",
"Date": "2023-05-02",
"Revision": "$Rev: 3621 $",
"Depends": "R (>= 4.0), grDevices, graphics, stats, utils",
"Imports": "methods",
"Suggests": "lattice, nlme, nnet, survival",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\nemail = \"ripley@stats.ox.ac.uk\"),\nperson(\"Bill\", \"Venables\", role = \"ctb\"),\nperson(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\nperson(\"Kurt\", \"Hornik\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"Albrecht\", \"Gebhardt\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"David\", \"Firth\", role = \"ctb\"))",
"Description": "Functions and datasets to support Venables and Ripley,\n\"Modern Applied Statistics with S\" (4th edition, 2002).",
"Title": "Support Functions and Datasets for Venables and Ripley's MASS",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "GPL-2 | GPL-3",
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
"Contact": "<MASS@stats.ox.ac.uk>",
"NeedsCompilation": "yes",
"Packaged": "2023-05-02 16:42:41 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\nBill Venables [ctb],\nDouglas M. Bates [ctb],\nKurt Hornik [trl] (partial port ca 1998),\nAlbrecht Gebhardt [trl] (partial port ca 1998),\nDavid Firth [ctb]",
"Maintainer": "Brian Ripley <ripley@stats.ox.ac.uk>",
"Repository": "CRAN",
"Date/Publication": "2023-05-04 07:32:21 UTC",
"Built": "R 4.3.0; x86_64-w64-mingw32; 2023-06-06 00:50:25 UTC; windows",
"Archs": "x64"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Matrix",
"Version": "1.6-0",
"Date": "2023-06-30",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes,\nincluding general, triangular, symmetric, and diagonal matrices\nwith numeric, logical, or pattern entries. Efficient methods for\noperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\nand 'SuiteSparse' libraries.",
"License": "GPL (>= 2) | file LICENCE",
"URL": "https://Matrix.R-forge.R-project.org",
"BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61",
"Contact": "Matrix-authors@R-project.org",
"Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\",\ncomment = c(ORCID = \"0000-0001-8316-9503\")),\nperson(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\nemail = \"mmaechler+Matrix@gmail.com\",\ncomment = c(ORCID = \"0000-0002-8685-9910\")),\nperson(\"Mikael\", \"Jagan\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-3542-2938\")),\nperson(\"Timothy A.\", \"Davis\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0001-7614-6899\",\n\"SuiteSparse libraries, notably CHOLMOD and AMD\",\n\"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\")),\nperson(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\ncomment = \"initial nearPD()\"),\nperson(\"Jason\", \"Riedy\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-4345-4200\",\n\"GNU Octave's condest() and onenormest()\",\n\"Copyright: Regents of the University of California\")),\nperson(\"R Core Team\", role = \"ctb\",\ncomment = \"base R's matrix implementation\"))",
"Depends": "R (>= 3.5.0), methods",
"Imports": "grDevices, graphics, grid, lattice, stats, utils",
"Suggests": "MASS, datasets, sfsmisc",
"Enhances": "SparseM, graph",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R and our S4 classes",
"BuildResaveData": "no",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-07-03 13:28:32 UTC; maechler",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>),\nMartin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\nMikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>),\nTimothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>,\nSuiteSparse libraries, notably CHOLMOD and AMD, collaborators\nlisted in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE,\nsystem.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))),\nJens Oehlschlägel [ctb] (initial nearPD()),\nJason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU\nOctave's condest() and onenormest(), Copyright: Regents of the\nUniversity of California),\nR Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <mmaechler+Matrix@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-07-08 11:00:09 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-08 23:58:36 UTC; windows",
"Archs": "x64"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\nreference classes. Compared to reference classes, R6 classes are simpler\nand lighter-weight, and they are not built on S4 classes so they do not\nrequire the methods package. These classes allow public and private\nmembers, and they support inheritance, even when the classes are defined in\ndifferent packages.",
"Depends": "R (>= 3.0)",
"Suggests": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <winston@stdout.org>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.1.2; ; 2022-02-28 20:28:44 UTC; windows"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "RColorBrewer",
"Version": "1.1-3",
"Date": "2022-04-03",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n\"cre\"), email = \"erich.neuwirth@univie.ac.at\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <erich.neuwirth@univie.ac.at>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\ndesigned by Cynthia Brewer as described at http://colorbrewer2.org.",
"License": "Apache License 2.0",
"Packaged": "2022-04-03 10:26:20 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2022-04-03 19:20:13 UTC",
"Built": "R 4.1.3; ; 2022-04-04 13:47:05 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.11",
"Date": "2023-07-03",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\nNathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\noffer a seamless integration of R and C++. Many R data types and objects can be\nmapped back and forth to C++ equivalents which facilitates both writing of new\ncode as well as easier integration of third-party libraries. Documentation\nabout 'Rcpp' is provided by several vignettes included in this package, via the\n'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and\nFrancois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n<doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n<doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "https://www.rcpp.org,\nhttps://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "rcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-07-03 15:56:55 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-07-06 07:33:14 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-06 13:00:41 UTC; windows",
"Archs": "x64"
}
},
"activityinfo": {
"Source": "github",
"Repository": null,
"description": {
"Package": "activityinfo",
"Type": "Package",
"Title": "R interface to ActivityInfo.org, an information management\nsoftware for humanitarian and development operations.",
"Version": "4.35",
"Date": "2023-05-25",
"Authors@R": "c(\nperson(\"Alex\", \"Bertram\", email = \"alex@bedatadriven.com\",\nrole = c(\"aut\", \"cre\")),\nperson(\"Nicolas\", \"Dickinson\", email = \"dickinson@washnote.com\",\nrole = \"aut\"),\nperson(\"Ryo\", \"Nakagawara\", email = \"rnakagawara@acdivoca-aux.org\",\nrole = \"ctb\"),\nperson(\"BeDataDriven B.V.\", role = c(\"cph\", \"fnd\")),\nperson(\"ACDI/VOCA\", role = c(\"fnd\"))\n)",
"Maintainer": "Alex Bertram <alex@bedatadriven.com>",
"Description": "An interface to ActivityInfo, a web-based information management software\nused for partner reporting, monitoring and evaluation and case management in\nhumanitarian aid, emergencies and international development",
"License": "GPL-3",
"Depends": "dplyr (>= 1.1.1)",
"Imports": "stats, utils, httr (>= 1.4.5), jsonlite, stringr (>= 1.5.0),\npillar (>= 1.8.1), rlang (>= 1.1.0), tibble (>= 3.2.1),\ntidyselect (>= 1.2.0), magrittr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Roxygen": "list(markdown = TRUE)",
"Suggests": "ggplot2, quanteda, scales, testthat (>= 3.0.0), knitr,\nrmarkdown, markdown, withr, assertthat, purrr",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "activityinfo-R",
"RemoteUsername": "bedatadriven",
"RemoteRef": "HEAD",
"RemoteSha": "4524f0eb2992f62ce9643f0ee3e42582b02e86c8",
"GithubRepo": "activityinfo-R",
"GithubUsername": "bedatadriven",
"GithubRef": "HEAD",
"GithubSHA1": "4524f0eb2992f62ce9643f0ee3e42582b02e86c8",
"NeedsCompilation": "no",
"Packaged": "2023-07-18 18:13:52 UTC; MATHEUS",
"Author": "Alex Bertram [aut, cre],\nNicolas Dickinson [aut],\nRyo Nakagawara [ctb],\nBeDataDriven B.V. [cph, fnd],\nACDI/VOCA [fnd]",
"Built": "R 4.3.1; ; 2023-07-18 18:13:53 UTC; windows"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "anytime",
"Type": "Package",
"Title": "Anything to 'POSIXct' or 'Date' Converter",
"Version": "0.3.9",
"Date": "2020-08-26",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Convert input in any one of character, integer, numeric, factor,\nor ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\npredefined formats, and relying on Boost facilities for date and time parsing.",
"URL": "http://dirk.eddelbuettel.com/code/anytime.html",
"BugReports": "https://github.com/eddelbuettel/anytime/issues",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"Depends": "R (>= 3.2.0)",
"Imports": "Rcpp (>= 0.12.9)",
"LinkingTo": "Rcpp (>= 0.12.9), BH",
"Suggests": "tinytest (>= 1.0.0), gettz",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2020-08-26 17:46:45.898451 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-08-27 11:40:21 UTC",
"Built": "R 4.3.0; x86_64-w64-mingw32; 2023-06-11 00:55:22 UTC; windows",
"Archs": "x64"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Safe Password Entry for R, Git, and SSH",
"Version": "1.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"),\nemail = \"jeroen@berkeley.edu\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a\npassphrase, for example to authenticate with a server or read a protected key.\nIncludes native programs for MacOS and Windows, hence no 'tcltk' is required.\nPassword entry can be invoked in two different ways: directly from R via the\naskpass() function, or indirectly as password-entry back-end for 'ssh-agent'\nor 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\nThereby the user can be prompted for credentials or a passphrase if needed\nwhen R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/jeroen/askpass#readme",
"BugReports": "https://github.com/jeroen/askpass/issues",
"Encoding": "UTF-8",
"LazyData": "true",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "6.1.1",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2019-01-13 12:08:17 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2022-02-28 22:35:45 UTC; windows",
"Archs": "i386, x64"
}
},
"attachment": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "attachment",
"Title": "Deal with Dependencies",
"Version": "0.4.0",
"Authors@R": "c(\nperson(\"Sébastien\", \"Rochette\", , \"sebastien@thinkr.fr\", role = c(\"cre\", \"aut\"),\ncomment = c(ORCID = \"0000-0002-1565-9313\")),\nperson(\"Vincent\", \"Guyader\", , \"vincent@thinkr.fr\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-0671-9270\", \"previous maintainer\")),\nperson(\"Murielle\", \"Delmotte\", , \"murielle@thinkr.fr\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1339-2424\")),\nperson(\"Swann\", \"Floc'hlay\", , \"swann@thinkr.fr\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-1477-830X\")),\nperson(\"ThinkR\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Manage dependencies during package development. This can\nretrieve all dependencies that are used in \".R\" files in the \"R/\"\ndirectory, in \".Rmd\" files in \"vignettes/\" directory and in 'roxygen2'\ndocumentation of functions. There is a function to update the\n\"DESCRIPTION\" file of your package with 'CRAN' packages or any other\nremote package. All functions to retrieve dependencies of \".R\"\nscripts and \".Rmd\" or \".qmd\" files can be used independently of a\npackage development.",
"License": "GPL-3",
"URL": "https://thinkr-open.github.io/attachment/,\nhttps://github.com/ThinkR-open/attachment",
"BugReports": "https://github.com/ThinkR-open/attachment/issues",
"VignetteBuilder": "knitr",
"Config/fusen/version": "0.5.0.9000",
"Config/Needs/website": "ThinkR-open/thinkrtemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Depends": "R (>= 3.4)",
"Imports": "cli, desc (>= 1.2.0), glue (>= 1.3.0), knitr (>= 1.20),\nmagrittr (>= 1.5), rmarkdown (>= 1.10), roxygen2, stats,\nstringr (>= 1.3.1), utils, withr, yaml",
"Suggests": "lifecycle, renv (>= 0.8.4), rstudioapi, testthat (>= 3.0.0)",
"NeedsCompilation": "no",
"Packaged": "2023-05-31 08:01:08 UTC; srochett",
"Author": "Sébastien Rochette [cre, aut] (<https://orcid.org/0000-0002-1565-9313>),\nVincent Guyader [aut] (<https://orcid.org/0000-0003-0671-9270>,\nprevious maintainer),\nMurielle Delmotte [aut] (<https://orcid.org/0000-0002-1339-2424>),\nSwann Floc'hlay [aut] (<https://orcid.org/0000-0003-1477-830X>),\nThinkR [cph, fnd]",
"Maintainer": "Sébastien Rochette <sebastien@thinkr.fr>",
"Repository": "CRAN",
"Date/Publication": "2023-05-31 17:10:02 UTC",
"Built": "R 4.3.0; ; 2023-05-31 23:51:12 UTC; windows"
}
},
"attempt": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "attempt",
"Title": "Tools for Defensive Programming",
"Version": "0.3.1",
"Authors@R": "person(\"Colin\", \"Fay\", email = \"contact@colinfay.me\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0001-7343-1846\"))",
"Description": "Tools for defensive programming, inspired by 'purrr' mappers and\nbased on 'rlang'.'attempt' extends and facilitates defensive programming by\nproviding a consistent grammar, and provides a set of easy to use functions\nfor common tests and conditions. 'attempt' only depends on 'rlang', and\nfocuses on speed, so it can be easily integrated in other functions and\nused in data analysis.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"URL": "https://github.com/ColinFay/attempt",
"LazyData": "true",
"Suggests": "testthat, knitr, rmarkdown, curl",
"VignetteBuilder": "knitr",
"Imports": "rlang",
"RoxygenNote": "7.1.0",
"NeedsCompilation": "no",
"Packaged": "2020-05-03 20:24:38 UTC; colin",
"Author": "Colin Fay [aut, cre] (<https://orcid.org/0000-0001-7343-1846>)",
"Maintainer": "Colin Fay <contact@colinfay.me>",
"Repository": "CRAN",
"Date/Publication": "2020-05-03 20:50:02 UTC",
"Built": "R 4.3.0; ; 2023-06-08 00:49:26 UTC; windows"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:16 UTC; windows",
"Archs": "i386, x64"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.5",
"Date": "2022-11-13",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <Jens.Oehlschlaegel@truecluster.com>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\nfast boolean methods, fast unique and non-unique integer sorting,\nfast set operations on sorted and unsorted sets of integers, and\nfoundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "yes",
"Packaged": "2022-11-13 21:22:09 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2022-11-15 21:20:16 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2022-11-16 15:51:31 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <Jens.Oehlschlaegel@truecluster.com>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers.\nThese are useful for handling database keys and exact counting in +-2^63.\nWARNING: do not use them as replacement for 32bit integers, integer64 are not\nsupported for subscripting by R-core and they have different semantics when\ncombined with double, e.g. integer64 + double => integer64.\nClass integer64 can be used in vectors, matrices, arrays and data.frames.\nMethods are available for coercion from and to logicals, integers, doubles,\ncharacters and factors as well as many elementwise and summary functions.\nMany fast algorithmic operations such as 'match' and 'order' support inter-\nactive data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2022-02-28 22:35:15 UTC; windows",
"Archs": "i386, x64"
}
},
"brew": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "brew",
"Title": "Templating Framework for Report Generation",
"Version": "1.0-8",
"Authors@R": "c(\nperson(\"Jeffrey\", \"Horner\", role = c(\"aut\", \"cph\")),\nperson(\"Greg\", \"Hunt\", , \"greg@firmansyah.com\", role = c(\"aut\", \"cre\", \"cph\"))\n)",
"Description": "Implements a templating framework for mixing text and R code\nfor report generation. brew template syntax is similar to PHP, Ruby's\nerb module, Java Server Pages, and Python's psp module.",
"License": "GPL-2",
"URL": "https://github.com/gregfrog/brew",
"BugReports": "https://github.com/gregfrog/brew/issues",
"Suggests": "testthat (>= 3.0.0)",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Repository": "CRAN",
"NeedsCompilation": "no",
"Packaged": "2022-09-28 07:04:26 UTC; greg",
"Author": "Jeffrey Horner [aut, cph],\nGreg Hunt [aut, cre, cph]",
"Maintainer": "Greg Hunt <greg@firmansyah.com>",
"Date/Publication": "2022-09-29 08:10:18 UTC",
"Built": "R 4.2.1; ; 2022-09-29 15:15:15 UTC; windows"
}
},
"brio": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "brio",
"Title": "Basic R Input Output",
"Version": "1.1.3",
"Authors@R": "c(\nperson(\"Jim\", \"Hester\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Functions to handle basic input output, these functions\nalways read and write UTF-8 (8-bit Unicode Transformation Format)\nfiles and provide more explicit control over line endings.",
"License": "MIT + file LICENSE",
"URL": "https://brio.r-lib.org, https://github.com/r-lib/brio",
"BugReports": "https://github.com/r-lib/brio/issues",
"Suggests": "covr, testthat (>= 2.1.0)",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2021-11-29 23:19:46 UTC; jhester",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\nGábor Csárdi [aut, cre],\nRStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2021-11-30 13:10:02 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2022-02-28 20:29:12 UTC; windows",
"Archs": "i386, x64"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.5.0",
"Authors@R": "c(\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\nperson(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"garrick@posit.co\", comment = c(ORCID = \"0000-0002-7111-0077\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap colorpicker library\"),\nperson(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootswatch library\"),\nperson(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap accessibility plugin\")\n)",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and\n'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as\nwell as their various 'Bootswatch' themes. An interactive widget is\nalso provided for previewing themes in real time.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Depends": "R (>= 2.10)",
"Imports": "base64enc, cachem, grDevices, htmltools (>= 0.5.4), jquerylib\n(>= 0.1.3), jsonlite, memoise (>= 2.0.1), mime, rlang, sass (>=\n0.4.0)",
"Suggests": "bsicons, curl, fontawesome, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.6.0), testthat,\nthematic, withr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Collate": "'accordion.R' 'bootswatch.R' 'breakpoints.R'\n'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R'\n'bs-remove.R' 'bs-theme-layers.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'card.R'\n'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'layout.R'\n'nav-items.R' 'nav-update.R' 'navs-legacy.R' 'navs.R'\n'onLoad.R' 'page.R' 'precompiled.R' 'print.R' 'shiny-devmode.R'\n'sidebar.R' 'staticimports.R' 'utils-shiny.R' 'utils-tags.R'\n'value-box.R' 'version-default.R' 'versions.R'",
"Config/testthat/edition": "3",
"Config/Needs/routine": "chromote, desc, renv",
"Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue,\nhtmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr,\nrprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2",
"Config/Needs/deploy": "BH, cpp11, dplyr, DT, ggplot2, ggridges, gt,\nhexbin, histoslider, lattice, leaflet, lubridate, modelr,\nnycflights13, plotly, reactable, reshape2, rprojroot,\nrsconnect, scales",
"NeedsCompilation": "no",
"Packaged": "2023-06-09 12:27:20 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\nJoe Cheng [aut],\nGarrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>),\nPosit Software, PBC [cph, fnd],\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nJavi Aguilar [ctb, cph] (Bootstrap colorpicker library),\nThomas Park [ctb, cph] (Bootswatch library),\nPayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-06-09 13:10:02 UTC",
"Built": "R 4.3.0; ; 2023-06-09 16:55:20 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cachem",
"Version": "1.0.8",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\neither their total size or the age of the oldest object (or both),\nautomatically pruning objects to maintain the constraints.",
"Authors@R": "c(\nperson(\"Winston\", \"Chang\", , \"winston@rstudio.com\", c(\"aut\", \"cre\")),\nperson(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap (>= 1.1.1)",
"Suggests": "testthat",
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Packaged": "2023-05-01 15:38:38 UTC; winston",
"Author": "Winston Chang [aut, cre],\nRStudio [cph, fnd]",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.3.0; x86_64-w64-mingw32; 2023-05-01 23:50:40 UTC; windows",
"Archs": "x64"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.3",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\ncomment = c(ORCID = \"0000-0001-7098-9676\")),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(\"Mango Solutions\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "It is sometimes useful to perform a computation in a separate\nR process, without affecting the current R process at all. This\npackages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr#readme",
"BugReports": "https://github.com/r-lib/callr/issues",
"Depends": "R (>= 3.4)",
"Imports": "processx (>= 3.6.1), R6, utils",
"Suggests": "asciicast, cli (>= 1.1.0), covr, mockery, ps, rprojroot,\nspelling, testthat (>= 3.0.0), withr (>= 2.3.0)",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.1.9000",
"Config/testthat/edition": "3",
"Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Packaged": "2022-11-02 15:17:20 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\nWinston Chang [aut],\nRStudio [cph, fnd],\nMango Solutions [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2022-11-02 16:40:11 UTC",
"Built": "R 4.2.2; ; 2022-11-06 03:51:54 UTC; windows"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\nperson(\"Jennifer\", \"Bryan\", , \"jenny@stat.ubc.ca\", c(\"cre\", \"aut\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", \"ctb\")\n)",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\nof cell range specification.",
"Depends": "R (>= 3.0.0)",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/rsheets/cellranger",
"BugReports": "https://github.com/rsheets/cellranger/issues",
"Suggests": "covr, testthat (>= 1.0.0), knitr, rmarkdown",
"RoxygenNote": "5.0.1.9000",
"VignetteBuilder": "knitr",
"Imports": "rematch, tibble",
"NeedsCompilation": "no",
"Packaged": "2016-07-26 06:50:00 UTC; jenny",
"Author": "Jennifer Bryan [cre, aut],\nHadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <jenny@stat.ubc.ca>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.1.2; ; 2022-03-01 04:20:34 UTC; windows"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.1",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", role = \"ctb\"),\nperson(\"Kirill\", \"Müller\", role = \"ctb\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "A suite of tools to build attractive command line interfaces\n('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\netc. Supports custom themes via a 'CSS'-like language. It also\ncontains a number of lower level 'CLI' elements: rules, boxes, trees,\nand 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\ncolors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": "R (>= 3.4)",
"Imports": "utils",
"Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "yes",
"Packaged": "2023-03-22 13:59:32 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\nHadley Wickham [ctb],\nKirill Müller [ctb],\nRStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-23 12:52:05 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2023-03-24 23:05:33 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\nperson(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4387-3384\")),\nperson(\"Louis\", \"Maddox\", role = \"ctb\"),\nperson(\"Steve\", \"Simpson\", role = \"ctb\"),\nperson(\"Jennifer\", \"Bryan\", role = \"ctb\")\n)",
"Description": "Simple utility functions to read from and write to\nthe Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr,\nhttp://matthewlincoln.net/clipr/",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": "utils",
"Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard, or wl-clipboard\n(https://github.com/bugaevc/wl-clipboard) for systems using\nWayland.",
"NeedsCompilation": "no",
"Packaged": "2022-02-19 02:20:21 UTC; mlincoln",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>),\nLouis Maddox [ctb],\nSteve Simpson [ctb],\nJennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <matthew.d.lincoln@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.1.2; ; 2022-02-28 20:29:30 UTC; windows"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "colorspace",
"Version": "2.1-0",
"Date": "2023-01-23",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"ihaka@stat.auckland.ac.nz\"),\nperson(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\",\ncomment = c(ORCID = \"0000-0002-3224-8858\")),\nperson(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\",\ncomment = c(ORCID = \"0000-0003-4198-9911\")),\nperson(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\",\ncomment = c(ORCID = \"0000-0001-9032-8912\")),\nperson(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\",\ncomment = c(ORCID = \"0000-0002-3798-5507\")),\nperson(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\",\ncomment = c(ORCID = \"0000-0002-7470-9261\")),\nperson(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\",\ncomment = c(ORCID = \"0000-0001-7346-3047\")),\nperson(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\ncomment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\nCIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\nQualitative, sequential, and diverging color palettes based on HCL colors\nare provided along with corresponding ggplot2 color scales.\nColor palette choice is aided by an interactive app (with either a Tcl/Tk\nor a shiny graphical user interface) and shiny apps with an HCL color picker and a\ncolor vision deficiency emulator. Plotting functions for displaying\nand assessing palettes include color swatches, visualizations of the\nHCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\nfunctions include: desaturation, lightening/darkening, mixing, and\nsimulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\nDetails can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\nand in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\nSoftware, <doi:10.18637/jss.v096.i01>).",
"Depends": "R (>= 3.0.0), methods",
"Imports": "graphics, grDevices, stats",
"Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson",
"VignetteBuilder": "knitr",
"License": "BSD_3_clause + file LICENSE",
"URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/",
"BugReports": "https://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-01-23 08:50:11 UTC; zeileis",
"Author": "Ross Ihaka [aut],\nPaul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\nKurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\nJason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\nReto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\nClaus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\nClaire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\nAchim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <Achim.Zeileis@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2023-01-23 11:40:02 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2023-01-24 14:43:46 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.9.0",
"Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", ,\"jeroen@berkeley.edu\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "https://docs.ropensci.org/commonmark/\nhttps://r-lib.r-universe.dev/commonmark\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\nsyntax. This package uses the 'cmark' reference implementation for converting\nmarkdown text into various formats including html, latex and groff man. In\naddition it exposes the markdown parse tree in xml format. Also includes opt-in\nsupport for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-03-17 18:02:44 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\nJohn MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2023-03-17 18:40:02 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2023-03-19 00:51:46 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"config": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "config",
"Type": "Package",
"Title": "Manage Environment Specific Configuration Values",
"Version": "0.3.1",
"Authors@R": "c(\nperson(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@rstudio.com\"),\nperson(\"Andrie\", \"de Vries\", role = \"cre\", email = \"apdevries@gmail.com\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")))",
"Imports": "yaml (>= 2.1.19)",
"Suggests": "testthat, knitr, rmarkdown, covr, spelling",
"Description": "Manage configuration values across multiple environments (e.g.\ndevelopment, test, production). Read values using a function that determines\nthe current environment and returns the appropriate value.",
"License": "GPL-3",
"URL": "https://github.com/rstudio/config",
"BugReports": "https://github.com/rstudio/config/issues",
"RoxygenNote": "7.1.1",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "no",
"Packaged": "2020-12-15 13:05:30 UTC; apdev",
"Author": "JJ Allaire [aut],\nAndrie de Vries [cre],\nRStudio [cph, fnd]",
"Maintainer": "Andrie de Vries <apdevries@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2020-12-17 11:00:06 UTC",
"Built": "R 4.3.0; ; 2023-06-08 00:49:26 UTC; windows"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.5",
"Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\nperson(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\nperson(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Provides a header only, C++11 interface to R's C\ninterface. Compared to other approaches 'cpp11' strives to be safe\nagainst long jumps from the C API as well as C++ exceptions, conform\nto normal R function semantics and supports interaction with 'ALTREP'\nvectors.",
"License": "MIT + file LICENSE",
"URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat, tibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"SystemRequirements": "C++11",
"NeedsCompilation": "no",
"Packaged": "2023-07-20 08:32:32 UTC; hornik",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>),\nJim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\nRomain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\nBenjamin Kietzman [ctb],\nPosit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-07-20 10:17:14 UTC",
"Built": "R 4.3.1; ; 2023-07-20 13:36:24 UTC; windows"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.2",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\",\nrole = c(\"aut\", \"cre\")),\nperson(\n\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\nrole=c(\"ctb\"))\n)",
"Description": "The crayon package is now superseded. Please use the 'cli' package\nfor new projects.\nColored terminal output on terminals that support 'ANSI'\ncolor and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\ncolor support is automatically detected. Colors and highlighting can\nbe combined and nested. New styles can also be created easily.\nThis package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/crayon#readme",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R'\n'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.r'\n'ansi-palette.R' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'enc-utils.R' 'has_ansi.r'\n'has_color.r' 'link.R' 'styles.r' 'machinery.r' 'parts.r'\n'print.r' 'style-var.r' 'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-09-29 06:24:10 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\nBrodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2022-09-29 16:20:24 UTC",
"Built": "R 4.2.1; ; 2022-09-30 01:23:13 UTC; windows"
}
},
"credentials": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "credentials",
"Type": "Package",
"Title": "Tools for Managing SSH and Git Credentials",
"Version": "1.3.2",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"),\nemail = \"jeroen@berkeley.edu\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Setup and retrieve HTTPS and SSH credentials for use with 'git' and\nother services. For HTTPS remotes the package interfaces the 'git-credential'\nutility which 'git' uses to store HTTP usernames and passwords. For SSH\nremotes we provide convenient functions to find or generate appropriate SSH\nkeys. The package both helps the user to setup a local git installation, and\nalso provides a back-end for git/ssh client libraries to authenticate with\nexisting user credentials.",
"License": "MIT + file LICENSE",
"SystemRequirements": "git (optional)",
"Encoding": "UTF-8",
"Imports": "openssl (>= 1.3), sys (>= 2.1), curl, jsonlite, askpass",
"Suggests": "testthat, knitr, rmarkdown",
"RoxygenNote": "7.1.1",
"VignetteBuilder": "knitr",
"Language": "en-US",
"URL": "https://docs.ropensci.org/credentials/ (website)\nhttps://github.com/r-lib/credentials",
"BugReports": "https://github.com/r-lib/credentials/issues",
"NeedsCompilation": "no",
"Packaged": "2021-11-29 11:40:26 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2021-11-29 12:40:01 UTC",
"Built": "R 4.1.2; ; 2022-03-01 02:42:44 UTC; windows"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.0",
"Authors@R": "c(\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\nemail = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(family = \"jQuery Foundation\", role = \"cph\",\ncomment = \"jQuery library and jQuery UI library\"),\nperson(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\nperson(\"Mark\", \"Otto\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(\"Jacob\", \"Thornton\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\ncomment = \"selectize.js library\"),\nperson(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\ncomment = \"ion.rangeSlider library\"),\nperson(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\ncomment = \"Javascript strftime library\")\n)",
"Description": "Provides building blocks for allowing HTML widgets to communicate\nwith each other, with Shiny or without (i.e. static .html files). Currently\nsupports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6",
"Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib",
"URL": "https://rstudio.github.io/crosstalk/",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-11-04 15:35:47 UTC; cpsievert",
"Author": "Joe Cheng [aut],\nCarson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\nRStudio [cph],\njQuery Foundation [cph] (jQuery library and jQuery UI library),\njQuery contributors [ctb, cph] (jQuery library; authors listed in\ninst/www/shared/jquery-AUTHORS.txt),\nMark Otto [ctb] (Bootstrap library),\nJacob Thornton [ctb] (Bootstrap library),\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nBrian Reavis [ctb, cph] (selectize.js library),\nKristopher Michael Kowal [ctb, cph] (es5-shim library),\nes5-shim contributors [ctb, cph] (es5-shim library),\nDenis Ineshin [ctb, cph] (ion.rangeSlider library),\nSami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-11-04 16:30:02 UTC",
"Built": "R 4.1.2; ; 2022-02-28 22:36:18 UTC; windows"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "5.0.1",
"Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroen@berkeley.edu\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"ctb\"),\nperson(\"RStudio\", role = \"cph\")\n)",
"Description": "The curl() and curl_download() functions provide highly\nconfigurable drop-in replacements for base url() and download.file() with\nbetter performance, support for encryption (https, ftps), gzip compression,\nauthentication, and other 'libcurl' goodies. The core of the package implements a\nframework for performing fully customized requests where data can be processed\neither in memory, on disk, or streaming via the callback or connection\ninterfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\nweb client see the 'httr' package which builds on this package with http\nspecific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://jeroen.r-universe.dev/curl https://curl.se/libcurl/",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2023-06-07 12:04:09 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\nHadley Wickham [ctb],\nRStudio [cph]",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2023-06-07 23:10:12 UTC",
"Built": "R 4.3.0; x86_64-w64-mingw32; 2023-06-07 23:51:06 UTC; windows",
"Archs": "x64"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "data.table",
"Version": "1.14.8",
"Title": "Extension of `data.frame`",
"Authors@R": "c(\nperson(\"Matt\",\"Dowle\", role=c(\"aut\",\"cre\"), email=\"mattjdowle@gmail.com\"),\nperson(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\nperson(\"Jan\",\"Gorecki\", role=\"ctb\"),\nperson(\"Michael\",\"Chirico\", role=\"ctb\"),\nperson(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\nperson(\"Tom\",\"Short\", role=\"ctb\"),\nperson(\"Steve\",\"Lianoglou\", role=\"ctb\"),\nperson(\"Eduard\",\"Antonyan\", role=\"ctb\"),\nperson(\"Markus\",\"Bonsch\", role=\"ctb\"),\nperson(\"Hugh\",\"Parsonage\", role=\"ctb\"),\nperson(\"Scott\",\"Ritchie\", role=\"ctb\"),\nperson(\"Kun\",\"Ren\", role=\"ctb\"),\nperson(\"Xianying\",\"Tan\", role=\"ctb\"),\nperson(\"Rick\",\"Saporta\", role=\"ctb\"),\nperson(\"Otto\",\"Seiskari\", role=\"ctb\"),\nperson(\"Xianghui\",\"Dong\", role=\"ctb\"),\nperson(\"Michel\",\"Lang\", role=\"ctb\"),\nperson(\"Watal\",\"Iwasaki\", role=\"ctb\"),\nperson(\"Seth\",\"Wenchel\", role=\"ctb\"),\nperson(\"Karl\",\"Broman\", role=\"ctb\"),\nperson(\"Tobias\",\"Schmidt\", role=\"ctb\"),\nperson(\"David\",\"Arenburg\", role=\"ctb\"),\nperson(\"Ethan\",\"Smith\", role=\"ctb\"),\nperson(\"Francois\",\"Cocquemas\", role=\"ctb\"),\nperson(\"Matthieu\",\"Gomez\", role=\"ctb\"),\nperson(\"Philippe\",\"Chataignon\", role=\"ctb\"),\nperson(\"Nello\",\"Blaser\", role=\"ctb\"),\nperson(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\nperson(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\nperson(\"Cheng\",\"Lee\", role=\"ctb\"),\nperson(\"Declan\",\"Groves\", role=\"ctb\"),\nperson(\"Daniel\",\"Possenriede\", role=\"ctb\"),\nperson(\"Felipe\",\"Parages\", role=\"ctb\"),\nperson(\"Denes\",\"Toth\", role=\"ctb\"),\nperson(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\nperson(\"Ayappan\",\"Perumal\", role=\"ctb\"),\nperson(\"James\",\"Sams\", role=\"ctb\"),\nperson(\"Martin\",\"Morgan\", role=\"ctb\"),\nperson(\"Michael\",\"Quinn\", role=\"ctb\"),\nperson(\"@javrucebo\",\"\", role=\"ctb\"),\nperson(\"@marc-outins\",\"\", role=\"ctb\"),\nperson(\"Roy\",\"Storey\", role=\"ctb\"),\nperson(\"Manish\",\"Saraswat\", role=\"ctb\"),\nperson(\"Morgan\",\"Jacob\", role=\"ctb\"),\nperson(\"Michael\",\"Schubmehl\", role=\"ctb\"),\nperson(\"Davis\",\"Vaughan\", role=\"ctb\"),\nperson(\"Toby\",\"Hocking\", role=\"ctb\"),\nperson(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\nperson(\"Tyson\",\"Barrett\", role=\"ctb\"),\nperson(\"Jim\",\"Hester\", role=\"ctb\"),\nperson(\"Anthony\",\"Damico\", role=\"ctb\"),\nperson(\"Sebastian\",\"Freundt\", role=\"ctb\"),\nperson(\"David\",\"Simons\", role=\"ctb\"),\nperson(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\nperson(\"Cole\",\"Miller\", role=\"ctb\"),\nperson(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\nperson(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\nperson(\"Kevin\",\"Ushey\", role=\"ctb\"),\nperson(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\nperson(\"Ben\",\"Schwen\", role=\"ctb\"))",
"Depends": "R (>= 3.1.0)",
"Imports": "methods",
"Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,\nnanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown",
"SystemRequirements": "zlib",
"Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.",
"License": "MPL-2.0 | file LICENSE",
"URL": "https://r-datatable.com, https://Rdatatable.gitlab.io/data.table,\nhttps://github.com/Rdatatable/data.table",
"BugReports": "https://github.com/Rdatatable/data.table/issues",
"VignetteBuilder": "knitr",
"ByteCompile": "TRUE",
"NeedsCompilation": "yes",
"Packaged": "2023-02-16 16:37:18 UTC; mdowle",
"Author": "Matt Dowle [aut, cre],\nArun Srinivasan [aut],\nJan Gorecki [ctb],\nMichael Chirico [ctb],\nPasha Stetsenko [ctb],\nTom Short [ctb],\nSteve Lianoglou [ctb],\nEduard Antonyan [ctb],\nMarkus Bonsch [ctb],\nHugh Parsonage [ctb],\nScott Ritchie [ctb],\nKun Ren [ctb],\nXianying Tan [ctb],\nRick Saporta [ctb],\nOtto Seiskari [ctb],\nXianghui Dong [ctb],\nMichel Lang [ctb],\nWatal Iwasaki [ctb],\nSeth Wenchel [ctb],\nKarl Broman [ctb],\nTobias Schmidt [ctb],\nDavid Arenburg [ctb],\nEthan Smith [ctb],\nFrancois Cocquemas [ctb],\nMatthieu Gomez [ctb],\nPhilippe Chataignon [ctb],\nNello Blaser [ctb],\nDmitry Selivanov [ctb],\nAndrey Riabushenko [ctb],\nCheng Lee [ctb],\nDeclan Groves [ctb],\nDaniel Possenriede [ctb],\nFelipe Parages [ctb],\nDenes Toth [ctb],\nMus Yaramaz-David [ctb],\nAyappan Perumal [ctb],\nJames Sams [ctb],\nMartin Morgan [ctb],\nMichael Quinn [ctb],\n@javrucebo [ctb],\n@marc-outins [ctb],\nRoy Storey [ctb],\nManish Saraswat [ctb],\nMorgan Jacob [ctb],\nMichael Schubmehl [ctb],\nDavis Vaughan [ctb],\nToby Hocking [ctb],\nLeonardo Silvestri [ctb],\nTyson Barrett [ctb],\nJim Hester [ctb],\nAnthony Damico [ctb],\nSebastian Freundt [ctb],\nDavid Simons [ctb],\nElliott Sales de Andrade [ctb],\nCole Miller [ctb],\nJens Peder Meldgaard [ctb],\nVaclav Tlapak [ctb],\nKevin Ushey [ctb],\nDirk Eddelbuettel [ctb],\nBen Schwen [ctb]",
"Maintainer": "Matt Dowle <mattjdowle@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-02-17 12:20:12 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2023-02-19 00:52:17 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"datamods": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "datamods",
"Title": "Modules to Import and Manipulate Data in 'Shiny'",
"Version": "1.4.1",
"Authors@R": "c(person(given = \"Victor\",\nfamily = \"Perrier\",\nrole = c(\"aut\", \"cre\", \"cph\"),\nemail = \"victor.perrier@dreamrs.fr\"),\nperson(given = \"Fanny\",\nfamily = \"Meyer\",\nrole = \"aut\"),\nperson(given = \"Samra\",\nfamily = \"Goumri\",\nrole = \"aut\"),\nperson(given = \"Zauad Shahreer\",\nfamily = \"Abeer\",\nrole = \"aut\",\nemail = \"shahreyar.abeer@gmail.com\"),\nperson(given = \"Eduard\",\nfamily = \"Szöcs\",\nrole = \"ctb\",\nemail = \"eduardszoecs@gmail.com\")\n)",
"Description": "'Shiny' modules to import data into an application or 'addin'\nfrom various sources, and to manipulate them after that.",
"License": "GPL-3",
"URL": "https://github.com/dreamRs/datamods",
"BugReports": "https://github.com/dreamRs/datamods/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Imports": "data.table, htmltools, htmlwidgets, phosphoricons, reactable,\nreadxl, rio, rlang, shiny (>= 1.5.0), shinyWidgets (>= 0.7.3),\ntibble, tools, shinybusy, writexl",
"Suggests": "bslib, jsonlite, knitr, MASS, rmarkdown, testthat, validate",
"VignetteBuilder": "knitr",
"Depends": "R (>= 2.10)",
"LazyData": "true",
"NeedsCompilation": "no",
"Packaged": "2023-06-19 08:55:18 UTC; victorp",
"Author": "Victor Perrier [aut, cre, cph],\nFanny Meyer [aut],\nSamra Goumri [aut],\nZauad Shahreer Abeer [aut],\nEduard Szöcs [ctb]",
"Maintainer": "Victor Perrier <victor.perrier@dreamrs.fr>",
"Repository": "CRAN",
"Date/Publication": "2023-06-19 09:20:02 UTC",
"Built": "R 4.3.1; ; 2023-06-25 03:23:06 UTC; windows"
}
},
"desc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "desc",
"Title": "Manipulate DESCRIPTION Files",
"Version": "1.4.2",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Kirill\", \"Müller\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"),\nperson(\"Maëlle\", \"Salmon\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-2815-0399\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Description": "Tools to read, write, create, and manipulate DESCRIPTION\nfiles. It is intended for packages that create or manipulate other\npackages.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/desc#readme,\nhttps://r-lib.github.io/desc/",
"BugReports": "https://github.com/r-lib/desc/issues",
"Depends": "R (>= 3.4)",
"Imports": "cli, R6, rprojroot, utils",
"Suggests": "callr, covr, gh, spelling, testthat, whoami, withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.1.9000",
"Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R'\n'collate.R' 'constants.R' 'deps.R' 'desc-package.R'\n'description.R' 'encoding.R' 'latex.R' 'non-oo-api.R'\n'package-archives.R' 'read.R' 'remotes.R' 'str.R'\n'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'",
"NeedsCompilation": "no",
"Packaged": "2022-09-08 09:02:11 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\nKirill Müller [aut],\nJim Hester [aut],\nMaëlle Salmon [ctb] (<https://orcid.org/0000-0002-2815-0399>),\nRStudio [cph, fnd]",
"Repository": "CRAN",
"Date/Publication": "2022-09-08 10:52:55 UTC",
"Built": "R 4.2.1; ; 2022-09-08 14:05:28 UTC; windows"
}
},
"diffobj": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "diffobj",
"Type": "Package",
"Title": "Diffs for R Objects",
"Description": "Generate a colorized diff of two R objects for an intuitive\nvisualization of their differences.",
"Version": "0.3.5",
"Authors@R": "c(\nperson(\n\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\nrole=c(\"aut\", \"cre\")),\nperson(\n\"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\",\nrole=c(\"ctb\", \"cph\"),\ncomment=\"Original C implementation of Myers Diff Algorithm\"))",
"Depends": "R (>= 3.1.0)",
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/diffobj",
"BugReports": "https://github.com/brodieG/diffobj/issues",
"RoxygenNote": "7.1.1",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Suggests": "knitr, rmarkdown",
"Collate": "'capt.R' 'options.R' 'pager.R' 'check.R' 'finalizer.R'\n'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R'\n'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R'\n'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R'\n'tochar.R' 'trim.R' 'word.R'",
"Imports": "crayon (>= 1.3.2), tools, methods, utils, stats",
"NeedsCompilation": "yes",
"Packaged": "2021-10-05 01:16:56 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\nMichael B. Allen [ctb, cph] (Original C implementation of Myers Diff\nAlgorithm)",
"Maintainer": "Brodie Gaslam <brodie.gaslam@yahoo.com>",
"Repository": "CRAN",
"Date/Publication": "2021-10-05 07:10:17 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2022-02-28 20:29:15 UTC; windows",
"Archs": "i386, x64"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {