-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenv.lock
More file actions
1758 lines (1758 loc) · 91.5 KB
/
renv.lock
File metadata and controls
1758 lines (1758 loc) · 91.5 KB
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
{
"R": {
"Version": "4.5.2",
"Repositories": [
{
"Name": "CRAN",
"URL": "https://mirror.marwan.ma/cran"
}
]
},
"Packages": {
"DBI": {
"Package": "DBI",
"Version": "1.2.3",
"Source": "Repository",
"Title": "R Database Interface",
"Date": "2024-06-02",
"Authors@R": "c( person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\") )",
"Description": "A database interface definition for communication between R and relational database management systems. All classes in this package are virtual and need to be extended by the various R/DBMS implementations.",
"License": "LGPL (>= 2.1)",
"URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI",
"BugReports": "https://github.com/r-dbi/DBI/issues",
"Depends": [
"methods",
"R (>= 3.0.0)"
],
"Suggests": [
"arrow",
"blob",
"covr",
"DBItest",
"dbplyr",
"downlit",
"dplyr",
"glue",
"hms",
"knitr",
"magrittr",
"nanoarrow (>= 0.3.0.1)",
"RMariaDB",
"rmarkdown",
"rprojroot",
"RSQLite (>= 1.1-2)",
"testthat (>= 3.0.0)",
"vctrs",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/check": "r-dbi/DBItest",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Config/Needs/website": "r-dbi/DBItest, r-dbi/dbitemplate, adbi, AzureKusto, bigrquery, DatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool, RAthena, IMSMWU/RClickhouse, RH2, RJDBC, RMariaDB, RMySQL, RPostgres, RPostgreSQL, RPresto, RSQLite, sergeant, sparklyr, withr",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "R Special Interest Group on Databases (R-SIG-DB) [aut], Hadley Wickham [aut], Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>), R Consortium [fnd]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"R6": {
"Package": "R6",
"Version": "2.6.1",
"Source": "Repository",
"Title": "Encapsulated Classes with Reference Semantics",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6",
"BugReports": "https://github.com/r-lib/R6/issues",
"Depends": [
"R (>= 3.6)"
],
"Suggests": [
"lobstr",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark, scales",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN"
},
"RSQLite": {
"Package": "RSQLite",
"Version": "2.4.3",
"Source": "Repository",
"Title": "SQLite Interface for R",
"Date": "2025-08-01",
"Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(c(\"David\", \"A.\"), \"James\", role = \"aut\"), person(\"Seth\", \"Falcon\", role = \"aut\"), person(\"D. Richard\", \"Hipp\", role = \"ctb\", comment = \"for the included SQLite sources\"), person(\"Dan\", \"Kennedy\", role = \"ctb\", comment = \"for the included SQLite sources\"), person(\"Joe\", \"Mistachkin\", role = \"ctb\", comment = \"for the included SQLite sources\"), person(, \"SQLite Authors\", role = \"ctb\", comment = \"for the included SQLite sources\"), person(\"Liam\", \"Healy\", role = \"ctb\", comment = \"for the included SQLite sources\"), person(\"R Consortium\", role = \"fnd\"), person(, \"RStudio\", role = \"cph\") )",
"Description": "Embeds the SQLite database engine in R and provides an interface compliant with the DBI package. The source for the SQLite engine (version 3.50.4) and for various extensions is included. System libraries will never be consulted because this package relies on static linking for the plugins it includes; this also ensures a consistent experience across all installations.",
"License": "LGPL (>= 2.1)",
"URL": "https://rsqlite.r-dbi.org, https://github.com/r-dbi/RSQLite",
"BugReports": "https://github.com/r-dbi/RSQLite/issues",
"Depends": [
"R (>= 3.1.0)"
],
"Imports": [
"bit64",
"blob (>= 1.2.0)",
"DBI (>= 1.2.0)",
"memoise",
"methods",
"pkgconfig",
"rlang"
],
"Suggests": [
"callr",
"cli",
"DBItest (>= 1.8.0)",
"decor",
"gert",
"gh",
"hms",
"knitr",
"magrittr",
"rmarkdown",
"rvest",
"testthat (>= 3.0.0)",
"withr",
"xml2"
],
"LinkingTo": [
"plogr (>= 0.2.0)",
"cpp11 (>= 0.4.0)"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "r-dbi/dbitemplate",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"Collate": "'SQLiteConnection.R' 'SQLKeywords_SQLiteConnection.R' 'SQLiteDriver.R' 'SQLite.R' 'SQLiteResult.R' 'coerce.R' 'compatRowNames.R' 'copy.R' 'cpp11.R' 'datasetsDb.R' 'dbAppendTable_SQLiteConnection.R' 'dbBeginTransaction.R' 'dbBegin_SQLiteConnection.R' 'dbBind_SQLiteResult.R' 'dbClearResult_SQLiteResult.R' 'dbColumnInfo_SQLiteResult.R' 'dbCommit_SQLiteConnection.R' 'dbConnect_SQLiteConnection.R' 'dbConnect_SQLiteDriver.R' 'dbDataType_SQLiteConnection.R' 'dbDataType_SQLiteDriver.R' 'dbDisconnect_SQLiteConnection.R' 'dbExistsTable_SQLiteConnection_Id.R' 'dbExistsTable_SQLiteConnection_character.R' 'dbFetch_SQLiteResult.R' 'dbGetException_SQLiteConnection.R' 'dbGetInfo_SQLiteConnection.R' 'dbGetInfo_SQLiteDriver.R' 'dbGetPreparedQuery.R' 'dbGetPreparedQuery_SQLiteConnection_character_data.frame.R' 'dbGetRowCount_SQLiteResult.R' 'dbGetRowsAffected_SQLiteResult.R' 'dbGetStatement_SQLiteResult.R' 'dbHasCompleted_SQLiteResult.R' 'dbIsValid_SQLiteConnection.R' 'dbIsValid_SQLiteDriver.R' 'dbIsValid_SQLiteResult.R' 'dbListResults_SQLiteConnection.R' 'dbListTables_SQLiteConnection.R' 'dbQuoteIdentifier_SQLiteConnection_SQL.R' 'dbQuoteIdentifier_SQLiteConnection_character.R' 'dbReadTable_SQLiteConnection_character.R' 'dbRemoveTable_SQLiteConnection_character.R' 'dbRollback_SQLiteConnection.R' 'dbSendPreparedQuery.R' 'dbSendPreparedQuery_SQLiteConnection_character_data.frame.R' 'dbSendQuery_SQLiteConnection_character.R' 'dbUnloadDriver_SQLiteDriver.R' 'dbUnquoteIdentifier_SQLiteConnection_SQL.R' 'dbWriteTable_SQLiteConnection_character_character.R' 'dbWriteTable_SQLiteConnection_character_data.frame.R' 'db_bind.R' 'deprecated.R' 'export.R' 'fetch_SQLiteResult.R' 'import-standalone-check_suggested.R' 'import-standalone-purrr.R' 'initExtension.R' 'initRegExp.R' 'isSQLKeyword_SQLiteConnection_character.R' 'make.db.names_SQLiteConnection_character.R' 'pkgconfig.R' 'show_SQLiteConnection.R' 'sqlData_SQLiteConnection.R' 'table.R' 'transactions.R' 'utils.R' 'version.R' 'zzz.R'",
"NeedsCompilation": "yes",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], David A. James [aut], Seth Falcon [aut], D. Richard Hipp [ctb] (for the included SQLite sources), Dan Kennedy [ctb] (for the included SQLite sources), Joe Mistachkin [ctb] (for the included SQLite sources), SQLite Authors [ctb] (for the included SQLite sources), Liam Healy [ctb] (for the included SQLite sources), R Consortium [fnd], RStudio [cph]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"Rcpp": {
"Package": "Rcpp",
"Version": "1.1.0",
"Source": "Repository",
"Title": "Seamless R and C++ Integration",
"Date": "2025-07-01",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013, <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018, <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, https://dirk.eddelbuettel.com/code/rcpp.html, https://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "rcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Dirk Eddelbuettel [aut, cre] (ORCID: <https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>), JJ Allaire [aut] (ORCID: <https://orcid.org/0000-0003-0174-9868>), Kevin Ushey [aut] (ORCID: <https://orcid.org/0000-0003-2880-7407>), Qiang Kou [aut] (ORCID: <https://orcid.org/0000-0001-6786-5453>), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: <https://orcid.org/0000-0001-6403-5550>), Doug Bates [aut] (ORCID: <https://orcid.org/0000-0001-8316-9503>), John Chambers [aut]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN"
},
"bit": {
"Package": "bit",
"Version": "4.6.0",
"Source": "Repository",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Brian\", \"Ripley\", role = \"ctb\") )",
"Depends": [
"R (>= 3.4.0)"
],
"Suggests": [
"testthat (>= 3.0.0)",
"roxygen2",
"knitr",
"markdown",
"rmarkdown",
"microbenchmark",
"bit64 (>= 4.0.0)",
"ff (>= 4.0.0)"
],
"Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/r-lib/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.3.2",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Brian Ripley [ctb]",
"Maintainer": "Michael Chirico <MichaelChirico4@gmail.com>",
"Repository": "CRAN"
},
"bit64": {
"Package": "bit64",
"Version": "4.6.0-1",
"Source": "Repository",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Leonardo\", \"Silvestri\", role = \"ctb\"), person(\"Ofek\", \"Shilon\", role = \"ctb\") )",
"Depends": [
"R (>= 3.4.0)",
"bit (>= 4.0.0)"
],
"Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/r-lib/bit64",
"Encoding": "UTF-8",
"Imports": [
"graphics",
"methods",
"stats",
"utils"
],
"Suggests": [
"testthat (>= 3.0.3)",
"withr"
],
"Config/testthat/edition": "3",
"Config/needs/development": "testthat",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Leonardo Silvestri [ctb], Ofek Shilon [ctb]",
"Maintainer": "Michael Chirico <michaelchirico4@gmail.com>",
"Repository": "CRAN"
},
"blob": {
"Package": "blob",
"Version": "1.2.4",
"Source": "Repository",
"Title": "A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "R's raw vector is useful for storing a single binary object. What if you want to put a vector of them in a data frame? The 'blob' package provides the blob object, a list of raw vectors, suitable for use as a column in data frame.",
"License": "MIT + file LICENSE",
"URL": "https://blob.tidyverse.org, https://github.com/tidyverse/blob",
"BugReports": "https://github.com/tidyverse/blob/issues",
"Imports": [
"methods",
"rlang",
"vctrs (>= 0.2.1)"
],
"Suggests": [
"covr",
"crayon",
"pillar (>= 1.2.1)",
"testthat"
],
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut], Kirill Müller [cre], RStudio [cph, fnd]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"cachem": {
"Package": "cachem",
"Version": "1.1.0",
"Source": "Repository",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit either their total size or the age of the oldest object (or both), automatically pruning objects to maintain the constraints.",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", c(\"aut\", \"cre\")), 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",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN"
},
"cli": {
"Package": "cli",
"Version": "3.6.5",
"Source": "Repository",
"Title": "Helpers for Developing Command Line Interfaces",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"gabor@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI 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",
"htmltools",
"htmlwidgets",
"knitr",
"methods",
"processx",
"ps (>= 1.3.4.9000)",
"rlang (>= 1.0.2.9003)",
"rmarkdown",
"rprojroot",
"rstudioapi",
"testthat (>= 3.2.0)",
"tibble",
"whoami",
"withr"
],
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (<https://orcid.org/0000-0002-5329-5987>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <gabor@posit.co>",
"Repository": "CRAN"
},
"clipr": {
"Package": "clipr",
"Version": "0.8.0",
"Source": "Repository",
"Type": "Package",
"Title": "Read and Write from the System Clipboard",
"Authors@R": "c( person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4387-3384\")), person(\"Louis\", \"Maddox\", role = \"ctb\"), person(\"Steve\", \"Simpson\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\") )",
"Description": "Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr, http://matthewlincoln.net/clipr/",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": [
"utils"
],
"Suggests": [
"covr",
"knitr",
"rmarkdown",
"rstudioapi (>= 0.5)",
"testthat (>= 2.0.0)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel (http://www.vergenet.net/~conrad/software/xsel/) for accessing the X11 clipboard, or wl-clipboard (https://github.com/bugaevc/wl-clipboard) for systems using Wayland.",
"NeedsCompilation": "no",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>), Louis Maddox [ctb], Steve Simpson [ctb], Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <matthew.d.lincoln@gmail.com>",
"Repository": "CRAN"
},
"cpp11": {
"Package": "cpp11",
"Version": "0.5.2",
"Source": "Repository",
"Title": "A C++11 Interface for R's C Interface",
"Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides a header only, C++11 interface to R's C interface. Compared to other approaches 'cpp11' strives to be safe against long jumps from the C API as well as C++ exceptions, conform to normal R function semantics and supports interaction with 'ALTREP' 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 (>= 4.0.0)"
],
"Suggests": [
"bench",
"brio",
"callr",
"cli",
"covr",
"decor",
"desc",
"ggplot2",
"glue",
"knitr",
"lobstr",
"mockery",
"progress",
"rmarkdown",
"scales",
"Rcpp",
"testthat (>= 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, vctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>), Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN"
},
"crayon": {
"Package": "crayon",
"Version": "1.5.3",
"Source": "Repository",
"Title": "Colored Terminal Output",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "The crayon package is now superseded. Please use the 'cli' package for new projects. Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' 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' 'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R' 'ansi-palette.R' 'combine.R' 'string.R' 'utils.R' 'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R' 'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R' 'print.R' 'style-var.R' 'show.R' 'string_operations.R'",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Brodie Gaslam [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"crul": {
"Package": "crul",
"Version": "1.6.0",
"Source": "Repository",
"Title": "HTTP Client",
"Description": "A simple HTTP client, with tools for making HTTP requests, and mocking HTTP requests. The package is built on R6, and takes inspiration from Ruby's 'faraday' gem (<https://rubygems.org/gems/faraday>). The package name is a play on curl, the widely used command line tool for HTTP, and this package is built on top of the R package 'curl', an interface to 'libcurl' (<https://curl.se/libcurl/>).",
"License": "MIT + file LICENSE",
"Authors@R": "c( person(\"Scott\", \"Chamberlain\", role = c(\"aut\", \"cre\"), email = \"myrmecocystus@gmail.com\", comment = c(ORCID = \"0000-0003-1444-9135\")) )",
"URL": "https://docs.ropensci.org/crul/, https://github.com/ropensci/crul, https://books.ropensci.org/http-testing/",
"BugReports": "https://github.com/ropensci/crul/issues",
"Encoding": "UTF-8",
"Language": "en-US",
"Imports": [
"curl (>= 3.3)",
"R6 (>= 2.2.0)",
"urltools (>= 1.6.0)",
"httpcode (>= 0.2.0)",
"jsonlite",
"mime",
"rlang",
"lifecycle"
],
"Suggests": [
"testthat (>= 3.0.0)",
"roxygen2 (>= 7.1.1)",
"fauxpas (>= 0.1.0)",
"webmockr (>= 2.2.0)",
"withr",
"knitr",
"rmarkdown"
],
"VignetteBuilder": "knitr",
"RoxygenNote": "7.3.2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"X-schema.org-applicationCategory": "Web",
"X-schema.org-keywords": "http, https, API, web-services, curl, download, libcurl, async, mocking, caching",
"X-schema.org-isPartOf": "https://ropensci.org",
"NeedsCompilation": "no",
"Author": "Scott Chamberlain [aut, cre] (ORCID: <https://orcid.org/0000-0003-1444-9135>)",
"Maintainer": "Scott Chamberlain <myrmecocystus@gmail.com>",
"Repository": "CRAN"
},
"curl": {
"Package": "curl",
"Version": "7.0.0",
"Source": "Repository",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Posit Software, PBC\", role = \"cph\"))",
"Description": "Bindings to 'libcurl' <https://curl.se/libcurl/> for performing fully configurable HTTP/FTP requests where responses can be processed in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr2' package which builds on this package with http specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl (>= 7.73): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)",
"URL": "https://jeroen.r-universe.dev/curl",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": [
"spelling",
"testthat (>= 1.0.0)",
"knitr",
"jsonlite",
"later",
"rmarkdown",
"httpuv (>= 1.4.4)",
"webutils"
],
"VignetteBuilder": "knitr",
"Depends": [
"R (>= 3.0.0)"
],
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>), Hadley Wickham [ctb], Posit Software, PBC [cph]",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "CRAN"
},
"dplyr": {
"Package": "dplyr",
"Version": "1.1.4",
"Source": "Repository",
"Type": "Package",
"Title": "A Grammar of Data Manipulation",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A fast, consistent tool for working with data frame like 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 (>= 1.0.3)",
"magrittr (>= 1.5)",
"methods",
"pillar (>= 1.9.0)",
"R6",
"rlang (>= 1.1.0)",
"tibble (>= 3.2.0)",
"tidyselect (>= 1.2.0)",
"utils",
"vctrs (>= 0.6.4)"
],
"Suggests": [
"bench",
"broom",
"callr",
"covr",
"DBI",
"dbplyr (>= 2.2.1)",
"ggplot2",
"knitr",
"Lahman",
"lobstr",
"microbenchmark",
"nycflights13",
"purrr",
"rmarkdown",
"RMySQL",
"RPostgreSQL",
"RSQLite",
"stringi (>= 1.7.6)",
"testthat (>= 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",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Lionel Henry [aut], Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>), Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN"
},
"fastmap": {
"Package": "fastmap",
"Version": "1.2.0",
"Source": "Repository",
"Title": "Fast Data Structures",
"Authors@R": "c( person(\"Winston\", \"Chang\", email = \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\") )",
"Description": "Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Suggests": [
"testthat (>= 2.1.1)"
],
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd], Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN"
},
"generics": {
"Package": "generics",
"Version": "0.1.4",
"Source": "Repository",
"Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )",
"Description": "In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"covr",
"pkgload",
"testthat (>= 3.0.0)",
"tibble",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Max Kuhn [aut], Davis Vaughan [aut], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN"
},
"glue": {
"Package": "glue",
"Version": "1.8.0",
"Source": "Repository",
"Title": "Interpreted String Literals",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/> and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted String Literals <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"License": "MIT + file LICENSE",
"URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue",
"BugReports": "https://github.com/tidyverse/glue/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"crayon",
"DBI (>= 1.2.0)",
"dplyr",
"knitr",
"magrittr",
"rlang",
"rmarkdown",
"RSQLite",
"testthat (>= 3.2.0)",
"vctrs (>= 0.3.0)",
"waldo (>= 0.5.3)",
"withr"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils, rprintf, tidyr, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "CRAN"
},
"hms": {
"Package": "hms",
"Version": "1.1.4",
"Source": "Repository",
"Title": "Pretty Time of Day",
"Date": "2025-10-11",
"Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\"), person(\"Posit Software, PBC\", role = \"fnd\", comment = c(ROR = \"03wc8by49\")) )",
"Description": "Implements an S3 class for storing and formatting time-of-day values, based on the 'difftime' class.",
"License": "MIT + file LICENSE",
"URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms",
"BugReports": "https://github.com/tidyverse/hms/issues",
"Imports": [
"cli",
"lifecycle",
"methods",
"pkgconfig",
"rlang (>= 1.0.2)",
"vctrs (>= 0.3.8)"
],
"Suggests": [
"crayon",
"lubridate",
"pillar (>= 1.1.0)",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3.9000",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), R Consortium [fnd], Posit Software, PBC [fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"httpcode": {
"Package": "httpcode",
"Version": "0.3.0",
"Source": "Repository",
"Title": "'HTTP' Status Code Helper",
"Description": "Find and explain the meaning of 'HTTP' status codes. Functions included for searching for codes by full or partial number, by message, and get appropriate dog and cat images for many status codes.",
"Authors@R": "person(\"Scott\", \"Chamberlain\", role = c(\"aut\",\"cre\"), email = \"myrmecocystus@gmail.com\", comment = c(ORCID = \"0000-0003-1444-9135\"))",
"License": "MIT + file LICENSE",
"URL": "https://github.com/sckott/httpcode",
"BugReports": "https://github.com/sckott/httpcode/issues",
"Encoding": "UTF-8",
"Language": "en-US",
"Suggests": [
"testthat"
],
"RoxygenNote": "7.1.0",
"NeedsCompilation": "no",
"Author": "Scott Chamberlain [aut, cre] (<https://orcid.org/0000-0003-1444-9135>)",
"Maintainer": "Scott Chamberlain <myrmecocystus@gmail.com>",
"Repository": "CRAN"
},
"jsonlite": {
"Package": "jsonlite",
"Version": "2.0.0",
"Source": "Repository",
"Title": "A Simple and Robust JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"Depends": [
"methods"
],
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))",
"URL": "https://jeroen.r-universe.dev/jsonlite https://arxiv.org/abs/1403.2805",
"BugReports": "https://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A reasonably fast JSON parser and generator, optimized for statistical data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications.",
"Suggests": [
"httr",
"vctrs",
"testthat",
"knitr",
"rmarkdown",
"R.rsp",
"sf"
],
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)",
"Repository": "CRAN"
},
"lifecycle": {
"Package": "lifecycle",
"Version": "1.0.4",
"Source": "Repository",
"Title": "Manage the Life Cycle of your Package Functions",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.",
"License": "MIT + file LICENSE",
"URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle",
"BugReports": "https://github.com/r-lib/lifecycle/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli (>= 3.4.0)",
"glue",
"rlang (>= 1.1.0)"
],
"Suggests": [
"covr",
"crayon",
"knitr",
"lintr",
"rmarkdown",
"testthat (>= 3.0.1)",
"tibble",
"tidyverse",
"tools",
"vctrs",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate, usethis",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"NeedsCompilation": "no",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "CRAN"
},
"lubridate": {
"Package": "lubridate",
"Version": "1.9.4",
"Source": "Repository",
"Type": "Package",
"Title": "Make Dealing with Dates a Little Easier",
"Authors@R": "c( person(\"Vitalie\", \"Spinu\", , \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Garrett\", \"Grolemund\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Davis\", \"Vaughan\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Imanuel\", \"Costigan\", role = \"ctb\"), person(\"Jason\", \"Law\", role = \"ctb\"), person(\"Doug\", \"Mitarotonda\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Jonathan\", \"Boiser\", role = \"ctb\"), person(\"Chel Hee\", \"Lee\", role = \"ctb\") )",
"Maintainer": "Vitalie Spinu <spinuvit@gmail.com>",
"Description": "Functions to work with date-times and time-spans: fast and user friendly parsing of date-time data, extraction and updating of components of a date-time (years, months, days, hours, minutes, and seconds), algebraic manipulation on date-time and time-span objects. The 'lubridate' package has a consistent and memorable syntax that makes working with dates easy and fun.",
"License": "GPL (>= 2)",
"URL": "https://lubridate.tidyverse.org, https://github.com/tidyverse/lubridate",
"BugReports": "https://github.com/tidyverse/lubridate/issues",
"Depends": [
"methods",
"R (>= 3.2)"
],
"Imports": [
"generics",
"timechange (>= 0.3.0)"
],
"Suggests": [
"covr",
"knitr",
"rmarkdown",
"testthat (>= 2.1.0)",
"vctrs (>= 0.6.5)"
],
"Enhances": [
"chron",
"data.table",
"timeDate",
"tis",
"zoo"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"SystemRequirements": "C++11, A system with zoneinfo data (e.g. /usr/share/zoneinfo). On Windows the zoneinfo included with R is used.",
"Collate": "'Dates.r' 'POSIXt.r' 'util.r' 'parse.r' 'timespans.r' 'intervals.r' 'difftimes.r' 'durations.r' 'periods.r' 'accessors-date.R' 'accessors-day.r' 'accessors-dst.r' 'accessors-hour.r' 'accessors-minute.r' 'accessors-month.r' 'accessors-quarter.r' 'accessors-second.r' 'accessors-tz.r' 'accessors-week.r' 'accessors-year.r' 'am-pm.r' 'time-zones.r' 'numeric.r' 'coercion.r' 'constants.r' 'cyclic_encoding.r' 'data.r' 'decimal-dates.r' 'deprecated.r' 'format_ISO8601.r' 'guess.r' 'hidden.r' 'instants.r' 'leap-years.r' 'ops-addition.r' 'ops-compare.r' 'ops-division.r' 'ops-integer-division.r' 'ops-m+.r' 'ops-modulo.r' 'ops-multiplication.r' 'ops-subtraction.r' 'package.r' 'pretty.r' 'round.r' 'stamp.r' 'tzdir.R' 'update.r' 'vctrs.R' 'zzz.R'",
"NeedsCompilation": "yes",
"Author": "Vitalie Spinu [aut, cre], Garrett Grolemund [aut], Hadley Wickham [aut], Davis Vaughan [ctb], Ian Lyttle [ctb], Imanuel Costigan [ctb], Jason Law [ctb], Doug Mitarotonda [ctb], Joseph Larmarange [ctb], Jonathan Boiser [ctb], Chel Hee Lee [ctb]",
"Repository": "CRAN"
},
"magrittr": {
"Package": "magrittr",
"Version": "2.0.4",
"Source": "Repository",
"Type": "Package",
"Title": "A Forward-Pipe Operator for R",
"Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"cre\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"",
"License": "MIT + file LICENSE",
"URL": "https://magrittr.tidyverse.org, https://github.com/tidyverse/magrittr",
"BugReports": "https://github.com/tidyverse/magrittr/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Suggests": [
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat"
],
"VignetteBuilder": "knitr",
"ByteCompile": "Yes",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3",
"NeedsCompilation": "yes",
"Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "CRAN"
},
"memoise": {
"Package": "memoise",
"Version": "2.0.1",
"Source": "Repository",
"Title": "'Memoisation' of Functions",
"Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Jim\", family = \"Hester\", role = \"aut\"), person(given = \"Winston\", family = \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"), person(given = \"Kirill\", family = \"Müller\", role = \"aut\", email = \"krlmlr+r@mailbox.org\"), person(given = \"Daniel\", family = \"Cook\", role = \"aut\", email = \"danielecook@gmail.com\"), person(given = \"Mark\", family = \"Edmondson\", role = \"ctb\", email = \"r@sunholo.com\"))",
"Description": "Cache the results of a function so that when you call it again with the same arguments it returns the previously computed value.",
"License": "MIT + file LICENSE",
"URL": "https://memoise.r-lib.org, https://github.com/r-lib/memoise",
"BugReports": "https://github.com/r-lib/memoise/issues",
"Imports": [
"rlang (>= 0.4.10)",
"cachem"
],
"Suggests": [
"digest",
"aws.s3",
"covr",
"googleAuthR",
"googleCloudStorageR",
"httr",
"testthat"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut, cre], Kirill Müller [aut], Daniel Cook [aut], Mark Edmondson [ctb]",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN"
},
"mime": {
"Package": "mime",
"Version": "0.13",
"Source": "Repository",
"Type": "Package",
"Title": "Map Filenames to MIME Types",
"Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )",
"Description": "Guesses the MIME type from a filename extension using the data derived from /etc/mime.types in UNIX-type systems.",
"Imports": [
"tools"
],
"License": "GPL",
"URL": "https://github.com/yihui/mime",
"BugReports": "https://github.com/yihui/mime/issues",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>, https://yihui.org), Jeffrey Horner [ctb], Beilei Bian [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN"
},
"nasapower": {
"Package": "nasapower",
"Version": "4.2.5",
"Source": "Repository",
"Type": "Package",
"Title": "NASA POWER API Client",
"Authors@R": "c( person(\"Adam H.\", \"Sparks\", , \"adamhsparks@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0061-8359\")), person(\"Scott\", \"Chamberlain\", , \"myrmecocystus@gmail.com\", role = \"rev\", comment = c(ORCID = \"0000-0003-1444-9135\", \"Scott Chamberlain reviewed nasapower for rOpenSci, see\\n <https://github.com/ropensci/software-review/issues/155>.\")), person(\"Hazel\", \"Kavili\", role = \"rev\", comment = \"Hazel Kavili reviewed nasapower for rOpenSci, see\\n <https://github.com/ropensci/software-review/issues/155>.\"), person(\"Alison\", \"Boyer\", role = \"rev\", comment = \"Alison Boyer reviewed nasapower for rOpenSci, see\\n <https://github.com/ropensci/software-review/issues/155>.\"), person(\"Fernando\", \"Miguez\", , \"femiguez@iastate.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4627-8329\", \"Fernando Miguez provided assistance in identifying\\n improper missing value handling in the POWER data, see \\n <https://github.com/femiguez/apsimx/pull/26>.\")), person(\"Maëlle\", \"Salmon\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2815-0399\", \"Maëlle Salmon contributed a patch to fix issues with using the R\\n package, 'vcr', for testing the API queries, see\\n <https://github.com/ropensci/nasapower/pull/64>.\")), person(\"Phillip D.\", \"Alderman\", , \"phillip.alderman@okstate.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1467-2337\", \"Phillip Alderman contributed a patch to fix an issue with, 'The\\n `file` argument of `vroom()` must use `I()` for literal data as\\n of vroom 1.5.0.', see\\n <https://github.com/ropensci/nasapower/pull/67>.\")), person(\"Aleksandar\", \"Blagotić\", , \"alex@rapporter.net\", role = c(\"ctb\", \"cph\"), comment = \"Author of the CRAN package 'rapportools', from which\\n the '.is_boolean()' was taken.\"), person(\"Gergely\", \"Daróczi\", , \"daroczig@rapporter.net\", role = c(\"ctb\", \"cph\"), comment = \"Author of the CRAN package 'rapportools', from which\\n the '.is_boolean()' was taken.\"), person(\"Curtin University\", role = \"cph\", comment = \"Supported the development of 'nasapower' through Adam H.\\n Sparks' time.\"), person(\"James J.\", \"Balamuta\", role = c(\"ctb\", \"cph\"), comment = \"Author of the GitHub package 'rops', from which the '%notin%' function was taken.\") )",
"Description": "An API client for NASA POWER global meteorology, surface solar energy and climatology data API. POWER (Prediction Of Worldwide Energy Resources) data are freely available for download with varying spatial resolutions dependent on the original data and with several temporal resolutions depending on the POWER parameter and community. This work is funded through the NASA Earth Science Directorate Applied Science Program. For more on the data themselves, the methodologies used in creating, a web-based data viewer and web access, please see <https://power.larc.nasa.gov/>.",
"License": "MIT + file LICENSE",
"URL": "https://docs.ropensci.org/nasapower/",
"BugReports": "https://github.com/ropensci/nasapower/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli",
"crul",
"lubridate",
"readr",
"rlang",
"tibble (>= 3.0.2)",
"yyjsonr"
],
"Suggests": [
"knitr",
"purrr",
"rmarkdown",
"spelling",
"testthat (>= 3.0.0)",
"vcr (>= 0.6.0)"
],
"VignetteBuilder": "knitr",
"Config/Needs/build": "moodymudskipper/devtag",
"Config/Needs/documentation": "roxylint",
"Config/roxylint": "list(linters = roxylint::tidy)",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "no",
"Repository": "CRAN",
"RoxygenNote": "7.3.2.9000",
"X-schema.org-applicationCategory": "Tools",
"X-schema.org-isPartOf": "https://ropensci.org",
"X-schema.org-keywords": "NASA, meteorological-data, weather, global, weather, weather-data, meteorology, NASA-POWER, agroclimatology, earth-science, data-access, climate-data",
"Author": "Adam H. Sparks [aut, cre] (ORCID: <https://orcid.org/0000-0002-0061-8359>), Scott Chamberlain [rev] (ORCID: <https://orcid.org/0000-0003-1444-9135>, Scott Chamberlain reviewed nasapower for rOpenSci, see <https://github.com/ropensci/software-review/issues/155>.), Hazel Kavili [rev] (Hazel Kavili reviewed nasapower for rOpenSci, see <https://github.com/ropensci/software-review/issues/155>.), Alison Boyer [rev] (Alison Boyer reviewed nasapower for rOpenSci, see <https://github.com/ropensci/software-review/issues/155>.), Fernando Miguez [ctb] (ORCID: <https://orcid.org/0000-0002-4627-8329>, Fernando Miguez provided assistance in identifying improper missing value handling in the POWER data, see <https://github.com/femiguez/apsimx/pull/26>.), Maëlle Salmon [ctb] (ORCID: <https://orcid.org/0000-0002-2815-0399>, Maëlle Salmon contributed a patch to fix issues with using the R package, 'vcr', for testing the API queries, see <https://github.com/ropensci/nasapower/pull/64>.), Phillip D. Alderman [ctb] (ORCID: <https://orcid.org/0000-0003-1467-2337>, Phillip Alderman contributed a patch to fix an issue with, 'The `file` argument of `vroom()` must use `I()` for literal data as of vroom 1.5.0.', see <https://github.com/ropensci/nasapower/pull/67>.), Aleksandar Blagotić [ctb, cph] (Author of the CRAN package 'rapportools', from which the '.is_boolean()' was taken.), Gergely Daróczi [ctb, cph] (Author of the CRAN package 'rapportools', from which the '.is_boolean()' was taken.), Curtin University [cph] (Supported the development of 'nasapower' through Adam H. Sparks' time.), James J. Balamuta [ctb, cph] (Author of the GitHub package 'rops', from which the '%notin%' function was taken.)",
"Maintainer": "Adam H. Sparks <adamhsparks@gmail.com>"
},
"pillar": {
"Package": "pillar",
"Version": "1.11.1",
"Source": "Repository",
"Title": "Coloured Formatting for Columns",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))",
"Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.",
"License": "MIT + file LICENSE",
"URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar",
"BugReports": "https://github.com/r-lib/pillar/issues",
"Imports": [
"cli (>= 2.3.0)",
"glue",
"lifecycle",
"rlang (>= 1.0.2)",