-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
4227 lines (4227 loc) · 284 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://cloud.r-project.org",
"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 <[email protected]>",
"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.3.0; ; 2023-04-25 13:42:25 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.3.0; ; 2023-04-25 14:37:35 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "R6",
"RemoteRef": "R6",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "2.5.1"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 <[email protected]>",
"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": "[email protected]",
"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-pc-linux-gnu; 2023-08-15 13:20:36 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-25 15:12:22 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "askpass",
"RemoteRef": "askpass",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.1"
}
},
"attachment": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "attachment",
"Title": "Deal with Dependencies",
"Version": "0.4.0",
"Authors@R": "c(\nperson(\"Sébastien\", \"Rochette\", , \"[email protected]\", role = c(\"cre\", \"aut\"),\ncomment = c(ORCID = \"0000-0002-1565-9313\")),\nperson(\"Vincent\", \"Guyader\", , \"[email protected]\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-0671-9270\", \"previous maintainer\")),\nperson(\"Murielle\", \"Delmotte\", , \"[email protected]\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1339-2424\")),\nperson(\"Swann\", \"Floc'hlay\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-31 17:10:02 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:41:59 UTC; unix"
}
},
"attempt": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-05-03 20:50:02 UTC",
"Built": "R 4.3.0; ; 2023-04-25 13:26:38 UTC; unix"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.4.1",
"Authors@R": "c(\nperson(\"Michel\", \"Lang\", NULL, \"[email protected]\",\nrole = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\nperson(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this\npackage. The backports are conditionally exported in order to let R resolve\nthe function name to either the implemented backport, or the respective base\nversion, if available. Package developers can make use of new functions or\narguments by selectively importing specific backports to\nsupport older installations.",
"URL": "https://github.com/r-lib/backports",
"BugReports": "https://github.com/r-lib/backports/issues",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Depends": "R (>= 3.0.0)",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Packaged": "2021-12-13 10:49:30 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\nR Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2021-12-13 11:30:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-25 05:06:06 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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.3.0; x86_64-pc-linux-gnu; 2023-04-25 15:12:05 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "base64enc",
"RemoteRef": "base64enc",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "0.1-3"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 <[email protected]>",
"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.3.0; x86_64-pc-linux-gnu; 2023-04-25 05:07:18 UTC; unix"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 <[email protected]>",
"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.3.0; x86_64-pc-linux-gnu; 2023-04-25 05:07:36 UTC; unix"
}
},
"brew": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\", , \"[email protected]\", 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 <[email protected]>",
"Date/Publication": "2022-09-29 08:10:18 UTC",
"Built": "R 4.3.0; ; 2023-04-25 14:37:34 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "brew",
"RemoteRef": "brew",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.0-8"
}
},
"brio": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-30 13:10:02 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:17:36 UTC; unix"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.5.1",
"Authors@R": "c(\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\nperson(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-7111-0077\")),\nperson(\"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' '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' 'card.R' 'deprecated.R' 'files.R' 'fill.R'\n'imports.R' 'input-switch.R' 'layout.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R'\n'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R'\n'utils-shiny.R' 'utils-tags.R' 'value-box.R'\n'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-08-11 15:31:21 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-11 16:53:52 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:39:06 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:23:21 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.3",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-11-02 16:40:11 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:21:33 UTC; unix"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\nperson(\"Jennifer\", \"Bryan\", , \"[email protected]\", c(\"cre\", \"aut\")),\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", \"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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.3.0; ; 2023-04-25 05:07:09 UTC; unix"
}
},
"checkmate": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "checkmate",
"Type": "Package",
"Title": "Fast and Versatile Argument Checks",
"Description": "Tests and assertions to perform frequent argument checks. A\nsubstantial part of the package was written in C to minimize any worries\nabout execution time overhead.",
"Version": "2.2.0",
"Authors@R": "c(\nperson(\"Michel\", \"Lang\", NULL, \"[email protected]\",\nrole = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\nperson(\"Bernd\", \"Bischl\", NULL, \"[email protected]\", role = \"ctb\"),\nperson(\"Dénes\", \"Tóth\", NULL, \"[email protected]\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0003-4262-3217\"))\n)",
"URL": "https://mllg.github.io/checkmate/,\nhttps://github.com/mllg/checkmate",
"URLNote": "https://github.com/mllg/checkmate",
"BugReports": "https://github.com/mllg/checkmate/issues",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"Depends": "R (>= 3.0.0)",
"Imports": "backports (>= 1.1.0), utils",
"Suggests": "R6, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n3.0.4), tinytest (>= 1.1.0), tibble",
"License": "BSD_3_clause + file LICENSE",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.2.3",
"Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R'\n'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R'\n'makeExpectation.R' 'makeTest.R' 'makeAssertion.R'\n'checkAccess.R' 'checkArray.R' 'checkAtomic.R'\n'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R'\n'checkClass.R' 'checkComplex.R' 'checkCount.R'\n'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R'\n'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R'\n'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R'\n'checkFileExists.R' 'checkFlag.R' 'checkFormula.R'\n'checkFunction.R' 'checkInt.R' 'checkInteger.R'\n'checkIntegerish.R' 'checkList.R' 'checkLogical.R'\n'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R'\n'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R'\n'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R'\n'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R'\n'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R'\n'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R'\n'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R'\n'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'",
"Packaged": "2023-04-26 11:39:50 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\nBernd Bischl [ctb],\nDénes Tóth [ctb] (<https://orcid.org/0000-0003-4262-3217>)",
"Maintainer": "Michel Lang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-04-27 09:22:31 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:18:12 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.1",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-03-23 12:52:05 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-25 14:37:35 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "cli",
"RemoteRef": "cli",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "3.6.1"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\nperson(\"Matthew\", \"Lincoln\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.3.0; ; 2023-04-25 14:40:25 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "clipr",
"RemoteRef": "clipr",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "0.8.0"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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\", ,\"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-03-17 18:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-25 14:37:35 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "commonmark",
"RemoteRef": "commonmark",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.9.0"
}
},
"config": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 = \"[email protected]\"),\nperson(\"Andrie\", \"de Vries\", role = \"cre\", email = \"[email protected]\"),\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-12-17 11:00:06 UTC",
"Built": "R 4.3.0; ; 2023-04-25 14:22:21 UTC; unix"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.6",
"Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", email = \"[email protected]\", 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",
"Depends": "R (>= 3.5.0)",
"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.3",
"NeedsCompilation": "no",
"Packaged": "2023-08-08 21:27:43 UTC; davis",
"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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-10 06:50:07 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:18:15 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.2",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\",\nrole = c(\"aut\", \"cre\")),\nperson(\n\"Brodie\", \"Gaslam\", email=\"[email protected]\",\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-09-29 16:20:24 UTC",
"Built": "R 4.3.0; ; 2023-04-25 14:37:35 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "crayon",
"RemoteRef": "crayon",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.5.2"
}
},
"credentials": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-29 12:40:01 UTC",
"Built": "R 4.3.0; ; 2023-04-25 15:12:36 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "credentials",
"RemoteRef": "credentials",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.3.2"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "5.0.2",
"Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", 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-08-09 13:24:37 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\nHadley Wickham [ctb],\nRStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-14 10:40:02 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:18:17 UTC; unix"
}
},
"dashboardthemes": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "dashboardthemes",
"Type": "Package",
"Title": "Customise the Appearance of 'shinydashboard' Applications using\nThemes",
"Version": "1.1.6",
"Authors@R": "person(\"Nik\", \"Lilovski\", email = \"[email protected]\",\nrole = c(\"aut\", \"cre\"))",
"Maintainer": "Nik Lilovski <[email protected]>",
"Description": "Allows manual creation of themes and logos to be used in\napplications created using the 'shinydashboard' package. Removes the need to\nchange the underlying css code by wrapping it into a set of convenient R\nfunctions.",
"URL": "https://github.com/nik01010/dashboardthemes",
"BugReports": "https://github.com/nik01010/dashboardthemes/issues",
"Depends": "R (>= 3.2.3)",
"Imports": "htmltools (>= 0.3.5)",
"Suggests": "testthat, lintr, knitr, rmarkdown, glue, covr",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.0",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2022-07-13 17:57:45 UTC; Nik",
"Author": "Nik Lilovski [aut, cre]",
"Repository": "CRAN",
"Date/Publication": "2022-07-13 18:20:02 UTC",
"Built": "R 4.3.0; ; 2023-04-25 15:12:27 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "dashboardthemes",
"RemoteRef": "dashboardthemes",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.1.6"
}
},
"desc": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "desc",
"Title": "Manipulate DESCRIPTION Files",
"Version": "1.4.2",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"Kirill\", \"Müller\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", , \"[email protected]\", 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 <[email protected]>",
"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.3.0; ; 2023-04-25 14:37:50 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "desc",
"RemoteRef": "desc",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "1.4.2"
}
},
"devtools": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "devtools",
"Title": "Tools to Make Developing R Packages Easier",
"Version": "2.4.5",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-6983-2759\")),\nperson(\"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],\nJim Hester [aut],\nWinston Chang [aut],\nJennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>),\nRStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-10-11 17:12:36 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:42:35 UTC; unix"
}
},
"diffobj": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"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=\"[email protected]\",\nrole=c(\"aut\", \"cre\")),\nperson(\n\"Michael B.\", \"Allen\", email=\"[email protected]\",\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-05 07:10:17 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:17:24 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> with contributions\nby Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\nMario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\nDuncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx,\nMichel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\nMatthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\nWinston Chang, and Dean Attali.",
"Version": "0.6.33",
"Date": "2023-06-28",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\ndigests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n'xxhash', 'murmurhash', 'spookyhash', 'blake3' and 'crc32c' algorithms) permitting\neasy comparison of R language objects, as well as functions such as'hmac()' to\ncreate hash-based message authentication code. Please note that this package\nis not meant to be deployed for cryptographic purposes for which more\ncomprehensive (and widely tested) libraries such as 'OpenSSL' should be\nused.",
"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": "2023-06-28 02:46:18 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-07-07 14:10:02 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-15 13:18:20 UTC; unix"
}
},
"downlit": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "downlit",
"Title": "Syntax Highlighting and Automatic Linking",
"Version": "0.4.3",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Syntax highlighting of R code, specifically designed for the\nneeds of 'RMarkdown' packages like 'pkgdown', 'hugodown', and\n'bookdown'. It includes linking of function calls to their\ndocumentation on the web, and automatic translation of ANSI escapes in\noutput 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 (>= 3.4.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.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-06-29 22:06:14 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\nRStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-06-29 22:40:08 UTC",
"Built": "R 4.3.1; ; 2023-08-15 13:33:18 UTC; unix"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.1.3",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Romain\", \"François\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2444-4226\")),\nperson(\"Lionel\", \"Henry\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"Davis\", \"Vaughan\", , \"[email protected]\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-4777-038X\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "A fast, consistent tool for working with data frame like\nobjects, 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.0)",
"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-08-25 22:28:32 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\nRomain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\nLionel Henry [aut],\nKirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\nDavis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>),\nPosit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-09-03 16:20:02 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-09-08 21:25:38 UTC; unix"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately\nthis power comes at a cost: misspelled arguments will be silently ignored.\nThe ellipsis package provides a collection of functions to catch problems\nand alert the user.",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"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],\nRStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-25 15:12:05 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "ellipsis",
"RemoteRef": "ellipsis",
"RemoteRepos": "https://cloud.r-project.org",
"RemotePkgPlatform": "source",
"RemoteSha": "0.3.2"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cloud.r-project.org",
"description": {
"Package": "evaluate",
"Type": "Package",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "0.21",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Michael\", \"Lawrence\", role = \"ctb\"),\nperson(\"Thomas\", \"Kluyver\", role = \"ctb\"),\nperson(\"Jeroen\", \"Ooms\", role = \"ctb\"),\nperson(\"Barret\", \"Schloerke\", role = \"ctb\"),\nperson(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\nperson(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\nperson(\"Michel\", \"Lang\", role = \"ctb\"),\nperson(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Parsing and evaluation tools that make it easy to recreate the\ncommand line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/evaluate",