-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
3947 lines (3947 loc) · 298 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": "mk_MK",
"platform": "4.4.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.33",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Xianying\", \"Tan\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Maximilian\", \"Girlich\", role = \"ctb\"),\n person(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\n person(\"Johannes\", \"Rauh\", role = \"ctb\"),\n person(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\n person(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\n person(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\n person(\"Alex\", \"Pickering\", role = c(\"ctb\")),\n person(\"William\", \"Holmes\", role = c(\"ctb\")),\n person(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\n person(\"Andres\", \"Quintero\", role = c(\"ctb\")),\n person(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Data objects in R can be rendered as HTML tables using the\n JavaScript 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), httpuv, jsonlite\n(>= 0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, future,\ntestit, tibble",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.3.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2024-04-03 14:36:50 UTC; yihui",
"Author": "Yihui Xie [aut],\n Joe Cheng [aut, cre],\n Xianying Tan [aut],\n JJ Allaire [ctb],\n Maximilian Girlich [ctb],\n Greg Freedman Ellis [ctb],\n Johannes Rauh [ctb],\n SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\n Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\n Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\n Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\n Alex Pickering [ctb],\n William Holmes [ctb],\n Mikko Marttila [ctb],\n Andres Quintero [ctb],\n Stéphane Laurent [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Joe Cheng <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-04 05:03:17 UTC",
"Built": "R 4.4.1; ; 2024-07-27 12:10:32 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-60.2",
"Date": "2024-01-12",
"Revision": "$Rev: 3641 $",
"Depends": "R (>= 4.4.0), grDevices, graphics, stats, utils",
"Imports": "methods",
"Suggests": "lattice, nlme, nnet, survival",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n\t person(\"Bill\", \"Venables\", role = \"ctb\"),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"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": "<[email protected]>",
"NeedsCompilation": "yes",
"Packaged": "2024-01-12 08:51:36 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [ctb],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-26 12:02:47 UTC",
"Built": "R 4.4.1; x86_64-pc-linux-gnu; 2024-06-14 13:38:33 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Matrix",
"Version": "1.7-0",
"VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h",
"Date": "2024-03-16",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes,\n\tincluding general, symmetric, triangular, and diagonal matrices\n\twith numeric, logical, or pattern entries. Efficient methods for\n\toperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\n\tand '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": "[email protected]",
"Authors@R": "\n\tc(person(\"Douglas\", \"Bates\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0001-8316-9503\")),\n\t person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\n\t email = \"[email protected]\",\n\t comment = c(ORCID = \"0000-0002-8685-9910\")),\n\t person(\"Mikael\", \"Jagan\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0002-3542-2938\")),\n\t person(\"Timothy A.\", \"Davis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0001-7614-6899\",\n\t \"SuiteSparse libraries\",\n\t \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")),\n\t person(\"George\", \"Karypis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0003-2753-1437\",\n\t \"METIS library\",\n\t \"Copyright: Regents of the University of Minnesota\")),\n\t person(\"Jason\", \"Riedy\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0002-4345-4200\",\n\t \"GNU Octave's condest() and onenormest()\",\n\t \"Copyright: Regents of the University of California\")),\n\t person(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\n\t comment = \"initial nearPD()\"),\n\t person(\"R Core Team\", role = \"ctb\",\n\t comment = \"base R's matrix implementation\"))",
"Depends": "R (>= 4.4.0), methods",
"Imports": "grDevices, graphics, grid, lattice, stats, utils",
"Suggests": "MASS, datasets, sfsmisc, tools",
"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": "2024-03-19 17:15:14 UTC; maechler",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>),\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Mikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>),\n Timothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>,\n SuiteSparse libraries, collaborators listed in\n dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"),\n pattern=\"License\", full.names=TRUE, recursive=TRUE)),\n George Karypis [ctb] (<https://orcid.org/0000-0003-2753-1437>, METIS\n library, Copyright: Regents of the University of Minnesota),\n Jason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU\n Octave's condest() and onenormest(), Copyright: Regents of the\n University of California),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n R Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-26 12:03:02 UTC",
"Built": "R 4.4.1; x86_64-pc-linux-gnu; 2024-06-14 13:38:39 UTC; unix"
}
},
"PKI": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "PKI",
"Version": "0.1-14",
"Title": "Public Key Infrastucture for R Based on the X.509 Standard",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0), base64enc",
"Enhances": "gmp",
"Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.",
"License": "GPL-2 | GPL-3 | file LICENSE",
"URL": "http://www.rforge.net/PKI",
"SystemRequirements": "OpenSSL library and headers (openssl-dev or\nsimilar)",
"NeedsCompilation": "yes",
"Packaged": "2024-06-15 19:22:05 UTC; rforge",
"Repository": "CRAN",
"Date/Publication": "2024-06-15 19:40:02 UTC",
"Built": "R 4.4.1; x86_64-pc-linux-gnu; 2024-06-20 18:28:29 UTC; unix"
}
},
"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 = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.4.0; ; 2024-05-02 07:28:23 UTC; unix"
}
},
"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 = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed 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.4.0; ; 2024-05-02 07:28:00 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.12",
"Date": "2024-01-08",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about '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\n Francois (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": "[email protected]",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-01-08 12:50:16 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-01-09 08:20:35 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:42:47 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Password Entry Utilities for R, Git, and SSH",
"Version": "1.2.0",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/askpass",
"BugReports": "https://github.com/r-lib/askpass/issues",
"Encoding": "UTF-8",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "7.2.3",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2023-09-03 19:16:12 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-09-03 20:00:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:31:32 UTC; unix"
}
},
"attachment": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "attachment",
"Title": "Deal with Dependencies",
"Version": "0.4.1",
"Authors@R": "c(\n person(\"Sébastien\", \"Rochette\", , \"[email protected]\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-1565-9313\")),\n person(\"Vincent\", \"Guyader\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0671-9270\", \"previous maintainer\")),\n person(\"Murielle\", \"Delmotte\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1339-2424\")),\n person(\"Swann\", \"Floc'hlay\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-1477-830X\")),\n person(\"ThinkR\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Manage dependencies during package development. This can\n retrieve all dependencies that are used in \".R\" files in the \"R/\"\n directory, in \".Rmd\" files in \"vignettes/\" directory and in 'roxygen2'\n documentation of functions. There is a function to update the\n \"DESCRIPTION\" file of your package with 'CRAN' packages or any other\n remote package. All functions to retrieve dependencies of \".R\"\n scripts and \".Rmd\" or \".qmd\" files can be used independently of a\n package 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.3.0",
"Language": "en-US",
"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": "2024-01-22 08:44:54 UTC; murielle",
"Author": "Sébastien Rochette [cre, aut] (<https://orcid.org/0000-0002-1565-9313>),\n Vincent Guyader [aut] (<https://orcid.org/0000-0003-0671-9270>,\n previous maintainer),\n Murielle Delmotte [aut] (<https://orcid.org/0000-0002-1339-2424>),\n Swann Floc'hlay [aut] (<https://orcid.org/0000-0003-1477-830X>),\n ThinkR [cph, fnd]",
"Maintainer": "Sébastien Rochette <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-01-22 09:32:46 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:11:56 UTC; unix"
}
},
"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 = \"[email protected]\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0001-7343-1846\"))",
"Description": "Tools for defensive programming, inspired by 'purrr' mappers and \n based on 'rlang'.'attempt' extends and facilitates defensive programming by \n providing a consistent grammar, and provides a set of easy to use functions \n for common tests and conditions. 'attempt' only depends on 'rlang', and \n focuses on speed, so it can be easily integrated in other functions and \n used 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-05-03 20:50:02 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:00:13 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"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.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:27:29 UTC; unix"
}
},
"brew": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "brew",
"Title": "Templating Framework for Report Generation",
"Version": "1.0-10",
"Authors@R": "c(\n person(\"Jeffrey\", \"Horner\", role = c(\"aut\", \"cph\")),\n person(\"Greg\", \"Hunt\", , \"[email protected]\", role = c(\"aut\", \"cre\", \"cph\"))\n )",
"Description": "Implements a templating framework for mixing text and R code\n for report generation. brew template syntax is similar to PHP, Ruby's\n erb 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": "2023-12-16 07:21:30 UTC; greg",
"Author": "Jeffrey Horner [aut, cph],\n Greg Hunt [aut, cre, cph]",
"Maintainer": "Greg Hunt <[email protected]>",
"Date/Publication": "2023-12-16 08:30:02 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:08:48 UTC; unix"
}
},
"brio": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "brio",
"Title": "Basic R Input Output",
"Version": "1.1.5",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Functions to handle basic input output, these functions\n always read and write UTF-8 (8-bit Unicode Transformation Format)\n files 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",
"Depends": "R (>= 3.6)",
"Suggests": "covr, testthat (>= 3.0.0)",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2024-04-24 18:51:29 UTC; gaborcsardi",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-24 19:20:07 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-08 08:08:27 UTC; unix"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.7.0",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"),\n person(\"Garrick\", \"Aden-Buie\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(, \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(, \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(, \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"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\n well as their various 'Bootswatch' themes. An interactive widget is\n also 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, fastmap (>= 1.1.1), grDevices, htmltools\n(>= 0.5.8), jquerylib (>= 0.1.3), jsonlite, lifecycle, memoise\n(>= 2.0.1), mime, rlang, sass (>= 0.4.9)",
"Suggests": "bsicons, curl, fontawesome, future, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.8.1), testthat,\nthematic, withr",
"Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11,\ncpsievert/chiflights22, cpsievert/histoslider, dplyr, DT,\nggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets,\nlattice, leaflet, lubridate, modelr, plotly, reactable,\nreshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler,\ntibble",
"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/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile,\ntheme-*, rmd-*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R'\n'bs-dependencies.R' 'bs-global.R' 'bs-remove.R'\n'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R'\n'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R'\n'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R'\n'layout.R' 'nav-items.R' 'nav-update.R' 'navs-legacy.R'\n'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R'\n'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R'\n'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R'\n'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no",
"Packaged": "2024-03-28 21:43:16 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>),\n Posit Software, PBC [cph, fnd],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-29 01:00:03 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:21:47 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cachem",
"Version": "1.1.0",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(family = \"Posit Software, PBC\", 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.2.0)",
"Suggests": "testthat",
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Packaged": "2024-05-15 15:54:22 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-05-16 09:50:11 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-22 08:06:24 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.6",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\", \"cph\"),\n comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "It is sometimes useful to perform a computation in a separate\n R process, without affecting the current R process at all. This\n packages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr",
"BugReports": "https://github.com/r-lib/callr/issues",
"Depends": "R (>= 3.4)",
"Imports": "processx (>= 3.6.1), R6, utils",
"Suggests": "asciicast (>= 2.3.1), cli (>= 1.1.0), mockery, ps, rprojroot,\nspelling, testthat (>= 3.2.0), withr (>= 2.3.0)",
"Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "no",
"Packaged": "2024-03-25 12:10:25 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-25 13:30:06 UTC",
"Built": "R 4.4.0; ; 2024-05-02 07:35:03 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.2",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", , \"[email protected]\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Posit Software, PBC\", 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,\n etc. Supports custom themes via a 'CSS'-like language. It also\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli",
"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.3",
"NeedsCompilation": "yes",
"Packaged": "2023-12-10 22:38:10 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n Salim Brüggemann [ctb] (<https://orcid.org/0000-0002-5329-5987>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-12-11 07:40:13 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:31:02 UTC; unix"
}
},
"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(\n person(\"Matthew\", \"Lincoln\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(\"Louis\", \"Maddox\", role = \"ctb\"),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\")\n )",
"Description": "Simple utility functions to read from and write to\n the 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>),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.4.0; ; 2024-05-02 07:29:18 UTC; unix"
}
},
"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 = \"[email protected]\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\n CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\n\t Qualitative, sequential, and diverging color palettes based on HCL colors\n\t are provided along with corresponding ggplot2 color scales.\n\t Color palette choice is aided by an interactive app (with either a Tcl/Tk\n\t or a shiny graphical user interface) and shiny apps with an HCL color picker and a\n\t color vision deficiency emulator. Plotting functions for displaying\n\t and assessing palettes include color swatches, visualizations of the\n\t HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\n\t functions include: desaturation, lightening/darkening, mixing, and\n\t simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\n\t Details can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\n\t and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\n\t Software, <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],\n Paul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\n Jason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\n Reto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\n Claus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Claire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\n Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-01-23 11:40:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:27:05 UTC; unix"
}
},
"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.1",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"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\n syntax. This package uses the 'cmark' reference implementation for converting\n markdown text into various formats including html, latex and groff man. In\n addition it exposes the markdown parse tree in xml format. Also includes opt-in\n support 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": "2024-01-30 11:29:56 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-01-30 12:40:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-08 08:00:03 UTC; unix"
}
},
"config": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "config",
"Type": "Package",
"Title": "Manage Environment Specific Configuration Values",
"Version": "0.3.2",
"Authors@R": "c(\n person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"[email protected]\"),\n person(\"Andrie\", \"de Vries\", role = \"cre\", email = \"[email protected]\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Imports": "yaml (>= 2.1.19)",
"Suggests": "testthat, knitr, rmarkdown, covr, spelling, withr",
"Description": "Manage configuration values across multiple environments (e.g.\n development, test, production). Read values using a function that determines\n the current environment and returns the appropriate value.",
"License": "GPL-3",
"URL": "https://rstudio.github.io/config/,\nhttps://github.com/rstudio/config",
"BugReports": "https://github.com/rstudio/config/issues",
"RoxygenNote": "7.2.3",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2023-08-30 09:28:23 UTC; apdev",
"Author": "JJ Allaire [aut],\n Andrie de Vries [cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Andrie de Vries <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-30 16:50:36 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:00:14 UTC; unix"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.7",
"Authors@R": "\n c(\n person(\"Davis\", \"Vaughan\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.",
"License": "MIT + file LICENSE",
"URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Depends": "R (>= 3.5.0)",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat (>= 3.2.0), 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.3",
"NeedsCompilation": "no",
"Packaged": "2023-12-01 19:16:04 UTC; davis",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>),\n Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Benjamin Kietzman [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-12-02 13:20:02 UTC",
"Built": "R 4.4.0; ; 2024-05-02 07:29:05 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.3",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Brodie\", \"Gaslam\", , \"[email protected]\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "The crayon package is now superseded. Please use the 'cli'\n package for new projects. Colored terminal output on terminals that\n support 'ANSI' color and highlight codes. It also works in 'Emacs'\n 'ESS'. 'ANSI' color support is automatically detected. Colors and\n highlighting can be combined and nested. New styles can also be\n created easily. This package was inspired by the 'chalk' 'JavaScript'\n project.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"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'",
"NeedsCompilation": "no",
"Packaged": "2024-06-20 11:49:08 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-06-20 13:00:02 UTC",
"Built": "R 4.4.1; ; 2024-06-20 18:28:21 UTC; unix"
}
},
"credentials": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "credentials",
"Type": "Package",
"Title": "Tools for Managing SSH and Git Credentials",
"Version": "2.0.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Setup and retrieve HTTPS and SSH credentials for use with 'git' and \n other services. For HTTPS remotes the package interfaces the 'git-credential' \n utility which 'git' uses to store HTTP usernames and passwords. For SSH \n remotes we provide convenient functions to find or generate appropriate SSH \n keys. The package both helps the user to setup a local git installation, and\n also provides a back-end for git/ssh client libraries to authenticate with \n existing 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.2.1",
"VignetteBuilder": "knitr",
"Language": "en-US",
"URL": "https://docs.ropensci.org/credentials/\nhttps://r-lib.r-universe.dev/credentials",
"BugReports": "https://github.com/r-lib/credentials/issues",
"NeedsCompilation": "no",
"Packaged": "2023-09-06 11:28:31 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-09-06 21:32:31 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:07:39 UTC; unix"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.1",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\")\n )",
"Description": "Provides building blocks for allowing HTML widgets to communicate\n with each other, with Shiny or without (i.e. static .html files). Currently\n supports 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/,\nhttps://github.com/rstudio/crosstalk",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-11-22 16:29:50 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-11-23 08:50:07 UTC",
"Built": "R 4.4.0; ; 2024-06-11 06:20:54 UTC; unix"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "5.2.1",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other 'libcurl' goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific 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, later,\nrmarkdown, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.3.0",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2024-02-26 21:12:31 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-01 23:22:46 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:29:01 UTC; unix"
}
},
"desc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "desc",
"Title": "Manipulate DESCRIPTION Files",
"Version": "1.4.3",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Kirill\", \"Müller\", role = \"aut\"),\n person(\"Jim\", \"Hester\", , \"[email protected]\", role = \"aut\"),\n person(\"Maëlle\", \"Salmon\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-2815-0399\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Description": "Tools to read, write, create, and manipulate DESCRIPTION\n files. It is intended for packages that create or manipulate other\n packages.",
"License": "MIT + file LICENSE",
"URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc",
"BugReports": "https://github.com/r-lib/desc/issues",
"Depends": "R (>= 3.4)",
"Imports": "cli, R6, 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.3",
"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' 'find-package-root.R' 'latex.R'\n'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R'\n'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R'\n'version.R'",
"NeedsCompilation": "no",
"Packaged": "2023-12-10 11:07:50 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (<https://orcid.org/0000-0002-2815-0399>),\n Posit Software, PBC [cph, fnd]",
"Repository": "CRAN",
"Date/Publication": "2023-12-10 11:40:08 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:07:54 UTC; unix"
}
},
"devtools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "devtools",
"Title": "Tools to Make Developing R Packages Easier",
"Version": "2.4.5",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Collection of package development tools.",
"License": "MIT + file LICENSE",
"URL": "https://devtools.r-lib.org/, https://github.com/r-lib/devtools",
"BugReports": "https://github.com/r-lib/devtools/issues",
"Depends": "R (>= 3.0.2), usethis (>= 2.1.6)",
"Imports": "cli (>= 3.3.0), desc (>= 1.4.1), ellipsis (>= 0.3.2), fs (>=\n1.5.2), lifecycle (>= 1.0.1), memoise (>= 2.0.1), miniUI (>=\n0.1.1.1), pkgbuild (>= 1.3.1), pkgdown (>= 2.0.6), pkgload (>=\n1.3.0), profvis (>= 0.3.7), rcmdcheck (>= 1.4.0), remotes (>=\n2.4.2), rlang (>= 1.0.4), roxygen2 (>= 7.2.1), rversions (>=\n2.1.1), sessioninfo (>= 1.2.2), stats, testthat (>= 3.1.5),\ntools, urlchecker (>= 1.0.1), utils, withr (>= 2.5.0)",
"Suggests": "BiocManager (>= 1.30.18), callr (>= 3.7.1), covr (>= 3.5.1),\ncurl (>= 4.3.2), digest (>= 0.6.29), DT (>= 0.23), foghorn (>=\n1.4.2), gh (>= 1.3.0), gmailr (>= 1.0.1), httr (>= 1.4.3),\nknitr (>= 1.39), lintr (>= 3.0.0), MASS, mockery (>= 0.4.3),\npingr (>= 2.0.1), rhub (>= 1.1.1), rmarkdown (>= 2.14),\nrstudioapi (>= 0.13), spelling (>= 2.2)",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2022-10-11 16:13:16 UTC; jenny",
"Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Winston Chang [aut],\n Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>),\n RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-10-11 17:12:36 UTC",
"Built": "R 4.4.0; ; 2024-05-08 08:09:36 UTC; unix"
}
},
"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\n visualization of their differences.",
"Version": "0.3.5",
"Authors@R": "c(\n person(\n \"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\n \"Michael B.\", \"Allen\", email=\"[email protected]\",\n role=c(\"ctb\", \"cph\"),\n comment=\"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],\n Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff\n Algorithm)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-05 07:10:17 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-08 08:09:05 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> with contributions\n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx,\n Michel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\n Matthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\n Winston Chang, Dean Attali, and Michael Chirico.",
"Version": "0.6.35",
"Date": "2024-03-10",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128'\n algorithms) permitting easy comparison of R language objects, as well as functions\n such as'hmac()' to create hash-based message authentication code. Please note that\n this package is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.",
"URL": "https://github.com/eddelbuettel/digest,\nhttps://dirk.eddelbuettel.com/code/digest.html",
"BugReports": "https://github.com/eddelbuettel/digest/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, simplermarkdown",
"VignetteBuilder": "simplermarkdown",
"NeedsCompilation": "yes",
"Packaged": "2024-03-10 19:40:54 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-03-11 14:10:06 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:27:31 UTC; unix"
}
},
"downlit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "downlit",
"Title": "Syntax Highlighting and Automatic Linking",
"Version": "0.4.4",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Syntax highlighting of R code, specifically designed for the\n needs of 'RMarkdown' packages like 'pkgdown', 'hugodown', and\n 'bookdown'. It includes linking of function calls to their\n documentation on the web, and automatic translation of ANSI escapes in\n output to the equivalent HTML.",
"License": "MIT + file LICENSE",
"URL": "https://downlit.r-lib.org/, https://github.com/r-lib/downlit",
"BugReports": "https://github.com/r-lib/downlit/issues",
"Depends": "R (>= 4.0.0)",
"Imports": "brio, desc, digest, evaluate, fansi, memoise, rlang, vctrs,\nwithr, yaml",
"Suggests": "covr, htmltools, jsonlite, MASS, MassSpecWavelet, pkgload,\nrmarkdown, testthat (>= 3.0.0), xml2",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Packaged": "2024-06-07 19:03:38 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-06-10 09:10:02 UTC",
"Built": "R 4.4.1; ; 2024-06-20 18:34:09 UTC; unix"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.1.4",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"François\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"Davis\", \"Vaughan\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A fast, consistent tool for working with data frame like\n objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.5.0)",
"Imports": "cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>=\n1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6,\nrlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0),\nutils, vctrs (>= 0.6.4)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2,\nknitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,\nrmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6),\ntestthat (>= 3.1.5), tidyr (>= 1.3.0), withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-11-16 21:48:56 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Lionel Henry [aut],\n Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\n Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-11-17 16:50:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:39:25 UTC; unix"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately \n this power comes at a cost: misspelled arguments will be silently ignored. \n The ellipsis package provides a collection of functions to catch problems\n and alert the user.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis",
"BugReports": "https://github.com/r-lib/ellipsis/issues",
"Depends": "R (>= 3.2)",
"Imports": "rlang (>= 0.3.0)",
"Suggests": "covr, testthat",
"NeedsCompilation": "yes",
"Packaged": "2021-04-29 12:06:44 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:31:51 UTC; unix"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "evaluate",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "0.24.0",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Yihui\", \"Xie\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Parsing and evaluation tools that make it easy to recreate\n the command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": "R (>= 4.0.0)",
"Imports": "methods",
"Suggests": "covr, ggplot2, lattice, rlang, testthat (>= 3.0.0), withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2024-06-10 13:33:57 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\n Yihui Xie [aut] (<https://orcid.org/0000-0003-0645-5666>),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-06-10 14:10:02 UTC",
"Built": "R 4.4.1; ; 2024-06-20 18:28:26 UTC; unix"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "1.0.6",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"[email protected]\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R'\n'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R'\n'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Packaged": "2023-12-06 00:59:41 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-12-08 03:30:02 UTC",
"Built": "R 4.4.0; x86_64-pc-linux-gnu; 2024-05-02 07:29:08 UTC; unix"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "farver",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.1.2",
"Authors@R": "c(\n person(\"Thomas Lin\", \"Pedersen\", , \"[email protected]\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Berendea\", \"Nicolae\", role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(\"Romain\", \"François\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "The encoding of colour can be handled in many different ways,\n using different colour spaces. As different colour spaces have\n different uses, efficient conversion between these representations are\n important. The 'farver' package provides a set of functions that gives\n access to very fast colour space conversion and comparisons\n implemented in C++, and offers speed improvements over the\n 'convertColor' function in the 'grDevices' package.",
"License": "MIT + file LICENSE",
"URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "covr, testthat (>= 3.0.0)",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "yes",
"Packaged": "2024-05-13 08:31:27 UTC; thomas",
"Author": "Thomas Lin Pedersen [cre, aut]\n (<https://orcid.org/0000-0002-5147-4711>),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Posit, PBC [cph, fnd]",
"Maintainer": "Thomas Lin Pedersen <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-05-13 09:33:09 UTC",