library(terra)
# Create a SpatRaster with 3 layers, 2x2 pixels
r <- rast(nrows = 2L, ncols = 2L, nlyrs = 3L)
# Fill with numbers 1 to 12
values(r) <- 1L:12L
# Assign names to the layers
names(r) <- c("lyr1", "lyr2", "lyr3")
r
#> class : SpatRaster
#> size : 2, 2, 3 (nrow, ncol, nlyr)
#> resolution : 180, 90 (x, y)
#> extent : -180, 180, -90, 90 (xmin, xmax, ymin, ymax)
#> coord. ref. : lon/lat WGS 84 (CRS84) (OGC:CRS84)
#> source(s) : memory
#> names : lyr1, lyr2, lyr3
#> min values : 1, 5, 9
#> max values : 4, 8, 12
r[]
#> lyr1 lyr2 lyr3
#> [1,] 1 5 9
#> [2,] 2 6 10
#> [3,] 3 7 11
#> [4,] 4 8 12
In this short post, I will show how to use the app()
, lapp()
, and tapp()
functions from the terra
package to apply functions to SpatRaster
objects. These functions are useful for performing operations on raster data, such as calculating means or applying custom functions across layers.
Creating a SpatRaster
plot(r, main = names(r), col = terrain.colors(12L))
Applying functions to SpatRaster
layers
Use app()
to apply a function across all layers of a SpatRaster
object. This function operates on each pixel across all layers, allowing you to compute statistics or perform operations on the raster data.
Using app()
# Apply mean across layers for each pixel
app(r, mean)[]
#> mean
#> [1,] 5
#> [2,] 6
#> [3,] 7
#> [4,] 8
Using lapp()
Use lapp()
to apply a custom function that takes multiple layers as input. This is useful for more complex calculations that involve multiple layers.
# Apply custom function across layers
lapp(r, function(a, b, c) a + 2L * b + c)[]
#> lyr1
#> [1,] 20
#> [2,] 24
#> [3,] 28
#> [4,] 32
Using tapp()
Use tapp()
to apply a function over groups of layers, which is useful for temporal data or when you want to summarize layers by groups.
# Group layers and apply mean (layers 1 and 2 are grouped, layer 3 separate)
tapp(r, mean, index = c(1L, 1L, 2L))[]
#> X1 X2
#> [1,] 3 9
#> [2,] 4 10
#> [3,] 5 11
#> [4,] 6 12
Using global()
Use the global()
function to computes a summary statistic for each layer across all pixels. This is useful for obtaining overall statistics like mean
, sum
, or standard deviation for each layer.
# Calculate global mean for each layer
global(r, mean)
#> mean
#> lyr1 2.5
#> lyr2 6.5
#> lyr3 10.5
Functions comparison
Function | Operates Over | Purpose | Output Type | Example Usage | When to Use |
---|---|---|---|---|---|
app() |
Layers (per pixel) | Apply a function across layers at each pixel |
SpatRaster (1+ layers) |
app(r, mean) app(r, sum)
|
Simple summaries across layers (mean , sum , min , etc.) |
lapp() |
Layers (vectorized) | Pixel-wise operations with vectorized inputs | SpatRaster |
lapp(r, function(a,b,c) a + 2*b - c) |
Custom functions, better performance, multi-input, per-layer logic |
tapp() |
Time groups | Aggregate over temporal/index groups | SpatRaster |
tapp(r, mean, index = c(1,1,2)) |
Temporal summaries like monthly or yearly mean, grouped ops |
global() |
Cells (per layer) | Summary over all pixels in each layer | data.frame |
global(r, mean) |
Whole-layer stats like mean , min , sum , sd , etc. |
Session info
#> ─ Session info ───────────────────────────────────────────────────────────────
#> setting value
#> version R version 4.5.0 (2025-04-11)
#> os Linux Mint 22
#> system x86_64, linux-gnu
#> ui X11
#> language en_CA:en
#> collate en_CA.UTF-8
#> ctype en_CA.UTF-8
#> tz America/Montreal
#> date 2025-06-12
#> pandoc 3.1.3 @ /usr/bin/ (via rmarkdown)
#> quarto 1.6.39 @ /usr/local/bin/quarto
#>
#> ─ Packages ───────────────────────────────────────────────────────────────────
#> ! package * version date (UTC) lib source
#> P cachem 1.1.0 2024-05-16 [?] RSPM (R 4.5.0)
#> P cli 3.6.5 2025-04-23 [?] CRAN (R 4.5.0)
#> P codetools 0.2-20 2024-03-31 [?] CRAN (R 4.4.0)
#> P devtools 2.4.5 2022-10-11 [?] RSPM (R 4.5.0)
#> P digest 0.6.37 2024-08-19 [?] RSPM (R 4.5.0)
#> P ellipsis 0.3.2 2021-04-29 [?] RSPM (R 4.5.0)
#> P evaluate 1.0.3 2025-01-10 [?] RSPM
#> P fastmap 1.2.0 2024-05-15 [?] RSPM (R 4.5.0)
#> P fs 1.6.6 2025-04-12 [?] RSPM
#> P glue 1.8.0 2024-09-30 [?] RSPM (R 4.5.0)
#> P htmltools 0.5.8.1 2024-04-04 [?] RSPM (R 4.5.0)
#> P htmlwidgets 1.6.4 2023-12-06 [?] RSPM
#> P httpuv 1.6.16 2025-04-16 [?] RSPM
#> P jsonlite 2.0.0 2025-03-27 [?] RSPM (R 4.5.0)
#> P knitr 1.50 2025-03-16 [?] RSPM
#> P later 1.4.2 2025-04-08 [?] RSPM
#> P lifecycle 1.0.4 2023-11-07 [?] RSPM (R 4.5.0)
#> P magrittr 2.0.3 2022-03-30 [?] RSPM (R 4.5.0)
#> P memoise 2.0.1 2021-11-26 [?] RSPM (R 4.5.0)
#> P mime 0.13 2025-03-17 [?] RSPM
#> P miniUI 0.1.2 2025-04-17 [?] RSPM (R 4.5.0)
#> P pkgbuild 1.4.8 2025-05-26 [?] RSPM (R 4.5.0)
#> P pkgload 1.4.0 2024-06-28 [?] RSPM
#> P profvis 0.4.0 2024-09-20 [?] RSPM (R 4.5.0)
#> P promises 1.3.3 2025-05-29 [?] RSPM (R 4.5.0)
#> P purrr 1.0.4 2025-02-05 [?] RSPM
#> P R6 2.6.1 2025-02-15 [?] RSPM (R 4.5.0)
#> P Rcpp 1.0.14 2025-01-12 [?] CRAN (R 4.5.0)
#> P remotes 2.5.0 2024-03-17 [?] RSPM
#> P renv 1.1.4 2025-03-20 [?] RSPM
#> P rlang 1.1.6 2025-04-11 [?] RSPM
#> P rmarkdown 2.29 2024-11-04 [?] RSPM
#> P sessioninfo 1.2.3 2025-02-05 [?] RSPM (R 4.5.0)
#> P shiny 1.10.0 2024-12-14 [?] RSPM (R 4.5.0)
#> P terra * 1.8-54 2025-06-01 [?] RSPM
#> P urlchecker 1.0.1 2021-11-30 [?] RSPM (R 4.5.0)
#> P usethis 3.1.0 2024-11-26 [?] RSPM (R 4.5.0)
#> P vctrs 0.6.5 2023-12-01 [?] RSPM (R 4.5.0)
#> P xfun 0.52 2025-04-02 [?] RSPM
#> P xtable 1.8-4 2019-04-21 [?] RSPM (R 4.5.0)
#> P yaml 2.3.10 2024-07-26 [?] RSPM
#>
#> [1] /tmp/RtmpqlsFA7/renv-use-libpath-25da88295fcb83
#> [2] /tmp/RtmpqlsFA7/renv-sandbox
#>
#> * ── Packages attached to the search path.
#> P ── Loaded and on-disk path mismatch.
#>
#> ──────────────────────────────────────────────────────────────────────────────
renv.lock file
{
"R": {
"Version": "4.5.0",
"Repositories": [
{
"Name": "RSPM",
"URL": "https://packagemanager.posit.co/cran/latest"
},
{
"Name": "CRAN",
"URL": "https://cran.rstudio.com"
}
]
},
"Packages": {
"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": "RSPM"
},
"Rcpp": {
"Package": "Rcpp",
"Version": "1.0.14",
"Source": "Repository",
"Title": "Seamless R and C++ Integration",
"Date": "2025-01-11",
"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] (<https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>), JJ Allaire [aut] (<https://orcid.org/0000-0003-0174-9868>), Kevin Ushey [aut] (<https://orcid.org/0000-0003-2880-7407>), Qiang Kou [aut] (<https://orcid.org/0000-0001-6786-5453>), Nathan Russell [aut], Iñaki Ucar [aut] (<https://orcid.org/0000-0001-6403-5550>), Doug Bates [aut] (<https://orcid.org/0000-0001-8316-9503>), John Chambers [aut]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "RSPM"
},
"askpass": {
"Package": "askpass",
"Version": "1.2.1",
"Source": "Repository",
"Type": "Package",
"Title": "Password Entry Utilities for R, Git, and SSH",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a passphrase, for example to authenticate with a server or read a protected key. Includes native programs for MacOS and Windows, hence no 'tcltk' is required. Password entry can be invoked in two different ways: directly from R via the askpass() function, or indirectly as password-entry back-end for 'ssh-agent' or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables. Thereby the user can be prompted for credentials or a passphrase if needed when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.r-universe.dev/askpass",
"BugReports": "https://github.com/r-lib/askpass/issues",
"Encoding": "UTF-8",
"Imports": [
"sys (>= 2.1)"
],
"RoxygenNote": "7.2.3",
"Suggests": [
"testthat"
],
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"base64enc": {
"Package": "base64enc",
"Version": "0.1-3",
"Source": "Repository",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Depends": [
"R (>= 2.9.0)"
],
"Enhances": [
"png"
],
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"brew": {
"Package": "brew",
"Version": "1.0-10",
"Source": "Repository",
"Type": "Package",
"Title": "Templating Framework for Report Generation",
"Authors@R": "c( person(\"Jeffrey\", \"Horner\", role = c(\"aut\", \"cph\")), person(\"Greg\", \"Hunt\", , \"greg@firmansyah.com\", role = c(\"aut\", \"cre\", \"cph\")) )",
"Description": "Implements a templating framework for mixing text and R code for report generation. brew template syntax is similar to PHP, Ruby's erb module, Java Server Pages, and Python's psp module.",
"License": "GPL (>= 2)",
"URL": "https://github.com/gregfrog/brew",
"BugReports": "https://github.com/gregfrog/brew/issues",
"Suggests": [
"testthat (>= 3.0.0)"
],
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Repository": "RSPM",
"NeedsCompilation": "no",
"Author": "Jeffrey Horner [aut, cph], Greg Hunt [aut, cre, cph]",
"Maintainer": "Greg Hunt <greg@firmansyah.com>"
},
"brio": {
"Package": "brio",
"Version": "1.1.5",
"Source": "Repository",
"Title": "Basic R Input Output",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Functions to handle basic input output, these functions always read and write UTF-8 (8-bit Unicode Transformation Format) files and provide more explicit control over line endings.",
"License": "MIT + file LICENSE",
"URL": "https://brio.r-lib.org, https://github.com/r-lib/brio",
"BugReports": "https://github.com/r-lib/brio/issues",
"Depends": [
"R (>= 3.6)"
],
"Suggests": [
"covr",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"bslib": {
"Package": "bslib",
"Version": "0.9.0",
"Source": "Repository",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Authors@R": "c( person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Depends": [
"R (>= 2.10)"
],
"Imports": [
"base64enc",
"cachem",
"fastmap (>= 1.1.1)",
"grDevices",
"htmltools (>= 0.5.8)",
"jquerylib (>= 0.1.3)",
"jsonlite",
"lifecycle",
"memoise (>= 2.0.1)",
"mime",
"rlang",
"sass (>= 0.4.9)"
],
"Suggests": [
"bsicons",
"curl",
"fontawesome",
"future",
"ggplot2",
"knitr",
"magrittr",
"rappdirs",
"rmarkdown (>= 2.7)",
"shiny (> 1.8.1)",
"testthat",
"thematic",
"tools",
"utils",
"withr",
"yaml"
],
"Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11, cpsievert/chiflights22, cpsievert/histoslider, dplyr, DT, ggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets, lattice, leaflet, lubridate, markdown, modelr, plotly, reactable, reshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler, tibble",
"Config/Needs/routine": "chromote, desc, renv",
"Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue, htmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr, rprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-brand.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Joe Cheng [aut], Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"callr": {
"Package": "callr",
"Version": "3.7.6",
"Source": "Repository",
"Title": "Call R from R",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )",
"Description": "It is sometimes useful to perform a computation in a separate R process, without affecting the current R process at all. This packages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr",
"BugReports": "https://github.com/r-lib/callr/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"processx (>= 3.6.1)",
"R6",
"utils"
],
"Suggests": [
"asciicast (>= 2.3.1)",
"cli (>= 1.1.0)",
"mockery",
"ps",
"rprojroot",
"spelling",
"testthat (>= 3.2.0)",
"withr (>= 2.3.0)"
],
"Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph, tibble, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"commonmark": {
"Package": "commonmark",
"Version": "1.9.5",
"Source": "Repository",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"Description": "The CommonMark specification <https://github.github.com/gfm/> defines a rationalized version of markdown syntax. This package uses the 'cmark' reference implementation for converting markdown text into various formats including html, latex and groff man. In addition it exposes the markdown parse tree in xml format. Also includes opt-in support for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"URL": "https://docs.ropensci.org/commonmark/ https://ropensci.r-universe.dev/commonmark",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Suggests": [
"curl",
"testthat",
"xml2"
],
"RoxygenNote": "7.3.2",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"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": "RSPM"
},
"credentials": {
"Package": "credentials",
"Version": "2.0.2",
"Source": "Repository",
"Type": "Package",
"Title": "Tools for Managing SSH and Git Credentials",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Setup and retrieve HTTPS and SSH credentials for use with 'git' and other services. For HTTPS remotes the package interfaces the 'git-credential' utility which 'git' uses to store HTTP usernames and passwords. For SSH remotes we provide convenient functions to find or generate appropriate SSH keys. The package both helps the user to setup a local git installation, and also provides a back-end for git/ssh client libraries to authenticate with existing user credentials.",
"License": "MIT + file LICENSE",
"SystemRequirements": "git (optional)",
"Encoding": "UTF-8",
"Imports": [
"openssl (>= 1.3)",
"sys (>= 2.1)",
"curl",
"jsonlite",
"askpass"
],
"Suggests": [
"testthat",
"knitr",
"rmarkdown"
],
"RoxygenNote": "7.2.1",
"VignetteBuilder": "knitr",
"Language": "en-US",
"URL": "https://docs.ropensci.org/credentials/ https://r-lib.r-universe.dev/credentials",
"BugReports": "https://github.com/r-lib/credentials/issues",
"NeedsCompilation": "no",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"curl": {
"Package": "curl",
"Version": "6.3.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.62): 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.9000",
"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": "RSPM"
},
"desc": {
"Package": "desc",
"Version": "1.4.3",
"Source": "Repository",
"Title": "Manipulate DESCRIPTION Files",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"), person(\"Maëlle\", \"Salmon\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Description": "Tools to read, write, create, and manipulate DESCRIPTION files. It is intended for packages that create or manipulate other packages.",
"License": "MIT + file LICENSE",
"URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc",
"BugReports": "https://github.com/r-lib/desc/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"cli",
"R6",
"utils"
],
"Suggests": [
"callr",
"covr",
"gh",
"spelling",
"testthat",
"whoami",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R' 'collate.R' 'constants.R' 'deps.R' 'desc-package.R' 'description.R' 'encoding.R' 'find-package-root.R' 'latex.R' 'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R' 'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Kirill Müller [aut], Jim Hester [aut], Maëlle Salmon [ctb] (<https://orcid.org/0000-0002-2815-0399>), Posit Software, PBC [cph, fnd]",
"Repository": "RSPM"
},
"devtools": {
"Package": "devtools",
"Version": "2.4.5",
"Source": "Repository",
"Title": "Tools to Make Developing R Packages Easier",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", , \"jenny@rstudio.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"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 (>= 1.5.2)",
"lifecycle (>= 1.0.1)",
"memoise (>= 2.0.1)",
"miniUI (>= 0.1.1.1)",
"pkgbuild (>= 1.3.1)",
"pkgdown (>= 2.0.6)",
"pkgload (>= 1.3.0)",
"profvis (>= 0.3.7)",
"rcmdcheck (>= 1.4.0)",
"remotes (>= 2.4.2)",
"rlang (>= 1.0.4)",
"roxygen2 (>= 7.2.1)",
"rversions (>= 2.1.1)",
"sessioninfo (>= 1.2.2)",
"stats",
"testthat (>= 3.1.5)",
"tools",
"urlchecker (>= 1.0.1)",
"utils",
"withr (>= 2.5.0)"
],
"Suggests": [
"BiocManager (>= 1.30.18)",
"callr (>= 3.7.1)",
"covr (>= 3.5.1)",
"curl (>= 4.3.2)",
"digest (>= 0.6.29)",
"DT (>= 0.23)",
"foghorn (>= 1.4.2)",
"gh (>= 1.3.0)",
"gmailr (>= 1.0.1)",
"httr (>= 1.4.3)",
"knitr (>= 1.39)",
"lintr (>= 3.0.0)",
"MASS",
"mockery (>= 0.4.3)",
"pingr (>= 2.0.1)",
"rhub (>= 1.1.1)",
"rmarkdown (>= 2.14)",
"rstudioapi (>= 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",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut], Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <jenny@rstudio.com>",
"Repository": "RSPM"
},
"diffobj": {
"Package": "diffobj",
"Version": "0.3.6",
"Source": "Repository",
"Type": "Package",
"Title": "Diffs for R Objects",
"Description": "Generate a colorized diff of two R objects for an intuitive visualization of their differences.",
"Authors@R": "c( person( \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person( \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\", role=c(\"ctb\", \"cph\"), comment=\"Original C implementation of Myers Diff Algorithm\"))",
"Depends": [
"R (>= 3.1.0)"
],
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/diffobj",
"BugReports": "https://github.com/brodieG/diffobj/issues",
"RoxygenNote": "7.2.3",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Suggests": [
"knitr",
"rmarkdown"
],
"Collate": "'capt.R' 'options.R' 'pager.R' 'check.R' 'finalizer.R' 'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R' 'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R' 'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R' 'tochar.R' 'trim.R' 'word.R'",
"Imports": [
"crayon (>= 1.3.2)",
"tools",
"methods",
"utils",
"stats"
],
"NeedsCompilation": "yes",
"Author": "Brodie Gaslam [aut, cre], Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff Algorithm)",
"Maintainer": "Brodie Gaslam <brodie.gaslam@yahoo.com>",
"Repository": "CRAN"
},
"digest": {
"Package": "digest",
"Version": "0.6.37",
"Source": "Repository",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\"), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\"), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\"), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\"), person(\"Ion\", \"Suruceanu\", role=\"ctb\"), person(\"Bill\", \"Denney\", role=\"ctb\"), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\"), person(\"Sergey\", \"Fedorov\", role=\"ctb\"), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\"), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\"))",
"Date": "2024-08-19",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.",
"URL": "https://github.com/eddelbuettel/digest, https://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",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>), Antoine Lucas [ctb], Jarek Tuszynski [ctb], Henrik Bengtsson [ctb] (<https://orcid.org/0000-0002-7579-5165>), Simon Urbanek [ctb] (<https://orcid.org/0000-0003-2297-1732>), Mario Frasca [ctb], Bryan Lewis [ctb], Murray Stokely [ctb], Hannes Muehleisen [ctb], Duncan Murdoch [ctb], Jim Hester [ctb], Wush Wu [ctb] (<https://orcid.org/0000-0001-5180-0567>), Qiang Kou [ctb] (<https://orcid.org/0000-0001-6786-5453>), Thierry Onkelinx [ctb] (<https://orcid.org/0000-0001-8804-4216>), Michel Lang [ctb] (<https://orcid.org/0000-0001-9754-0393>), Viliam Simko [ctb], Kurt Hornik [ctb] (<https://orcid.org/0000-0003-4198-9911>), Radford Neal [ctb] (<https://orcid.org/0000-0002-2473-3407>), Kendon Bell [ctb] (<https://orcid.org/0000-0002-9093-8312>), Matthew de Queljoe [ctb], Dmitry Selivanov [ctb], Ion Suruceanu [ctb], Bill Denney [ctb], Dirk Schumacher [ctb], András Svraka [ctb], Sergey Fedorov [ctb], Will Landau [ctb] (<https://orcid.org/0000-0003-1878-3253>), Floris Vanderhaeghe [ctb] (<https://orcid.org/0000-0002-6378-6229>), Kevin Tappe [ctb], Harris McGehee [ctb], Tim Mastny [ctb], Aaron Peikert [ctb] (<https://orcid.org/0000-0001-7813-818X>), Mark van der Loo [ctb] (<https://orcid.org/0000-0002-9807-4686>), Chris Muir [ctb] (<https://orcid.org/0000-0003-2555-3878>), Moritz Beller [ctb] (<https://orcid.org/0000-0003-4852-0526>), Sebastian Campbell [ctb], Winston Chang [ctb] (<https://orcid.org/0000-0002-1576-2126>), Dean Attali [ctb] (<https://orcid.org/0000-0002-5645-3493>), Michael Chirico [ctb] (<https://orcid.org/0000-0003-0787-087X>), Kevin Ushey [ctb]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "RSPM"
},
"downlit": {
"Package": "downlit",
"Version": "0.4.4",
"Source": "Repository",
"Title": "Syntax Highlighting and Automatic Linking",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Syntax highlighting of R code, specifically designed for the needs of 'RMarkdown' packages like 'pkgdown', 'hugodown', and 'bookdown'. It includes linking of function calls to their documentation on the web, and automatic translation of ANSI escapes in output to the equivalent HTML.",
"License": "MIT + file LICENSE",
"URL": "https://downlit.r-lib.org/, https://github.com/r-lib/downlit",
"BugReports": "https://github.com/r-lib/downlit/issues",
"Depends": [
"R (>= 4.0.0)"
],
"Imports": [
"brio",
"desc",
"digest",
"evaluate",
"fansi",
"memoise",
"rlang",
"vctrs",
"withr",
"yaml"
],
"Suggests": [
"covr",
"htmltools",
"jsonlite",
"MASS",
"MassSpecWavelet",
"pkgload",
"rmarkdown",
"testthat (>= 3.0.0)",
"xml2"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"ellipsis": {
"Package": "ellipsis",
"Version": "0.3.2",
"Source": "Repository",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately this power comes at a cost: misspelled arguments will be silently ignored. The ellipsis package provides a collection of functions to catch problems and alert the user.",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = \"cph\") )",
"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",
"Author": "Hadley Wickham [aut, cre], RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "RSPM"
},
"evaluate": {
"Package": "evaluate",
"Version": "1.0.3",
"Source": "Repository",
"Type": "Package",
"Title": "Parsing and Evaluation Tools that Provide More Details than the Default",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Yihui\", \"Xie\", role = \"aut\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Michael\", \"Lawrence\", role = \"ctb\"), person(\"Thomas\", \"Kluyver\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Adam\", \"Ryczkowski\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Michel\", \"Lang\", role = \"ctb\"), person(\"Karolis\", \"Koncevičius\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Parsing and evaluation tools that make it easy to recreate the command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": [
"R (>= 3.6.0)"
],
"Suggests": [
"callr",
"covr",
"ggplot2 (>= 3.3.6)",
"lattice",
"methods",
"pkgload",
"rlang",
"knitr",
"testthat (>= 3.0.0)",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (<https://orcid.org/0000-0003-0645-5666>), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"fansi": {
"Package": "fansi",
"Version": "1.0.6",
"Source": "Repository",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.",
"Authors@R": "c( person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"), person(family=\"R Core Team\", email=\"R-core@r-project.org\", role=\"cph\", comment=\"UTF8 byte length calcs from src/util.c\" ))",
"Depends": [
"R (>= 3.1.0)"
],
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": [
"unitizer",
"knitr",
"rmarkdown"
],
"Imports": [
"grDevices",
"utils"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R' 'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R' 'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Author": "Brodie Gaslam [aut, cre], Elliott Sales De Andrade [ctb], R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <brodie.gaslam@yahoo.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"fontawesome": {
"Package": "fontawesome",
"Version": "0.5.3",
"Source": "Repository",
"Type": "Package",
"Title": "Easily Work with 'Font Awesome' Icons",
"Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown' documents and 'Shiny' apps. These icons can be inserted into HTML content through inline 'SVG' tags or 'i' tags. There is also a utility function for exporting 'Font Awesome' icons as 'PNG' images for those situations where raster graphics are needed.",
"Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome font\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome, https://rstudio.github.io/fontawesome/",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.3.2",
"Depends": [
"R (>= 3.3.0)"
],
"Imports": [
"rlang (>= 1.0.6)",
"htmltools (>= 0.5.1.1)"
],
"Suggests": [
"covr",
"dplyr (>= 1.0.8)",
"gt (>= 0.9.0)",
"knitr (>= 1.31)",
"testthat (>= 3.0.0)",
"rsvg"
],
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>), Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>), Winston Chang [ctb], Dave Gandy [ctb, cph] (Font-Awesome font), Posit Software, PBC [cph, fnd]",
"Maintainer": "Richard Iannone <rich@posit.co>",
"Repository": "RSPM"
},
"fs": {
"Package": "fs",
"Version": "1.6.6",
"Source": "Repository",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A cross-platform interface to file system operations, built on top of the 'libuv' C library.",
"License": "MIT + file LICENSE",
"URL": "https://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"covr",
"crayon",
"knitr",
"pillar (>= 1.0.0)",
"rmarkdown",
"spelling",
"testthat (>= 3.0.0)",
"tibble (>= 1.1.0)",
"vctrs (>= 0.3.0)",
"withr"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"SystemRequirements": "GNU make",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut], Hadley Wickham [aut], Gábor Csárdi [aut, cre], libuv project contributors [cph] (libuv library), Joyent, Inc. and other Node contributors [cph] (libuv library), Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"gert": {
"Package": "gert",
"Version": "2.1.5",
"Source": "Repository",
"Type": "Package",
"Title": "Simple Git 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(\"Jennifer\", \"Bryan\", role = \"ctb\", email = \"jenny@posit.co\", comment = c(ORCID = \"0000-0002-6983-2759\")))",
"Description": "Simple git client for R based on 'libgit2' <https://libgit2.org> with support for SSH and HTTPS remotes. All functions in 'gert' use basic R data types (such as vectors and data-frames) for their arguments and return values. User credentials are shared with command line 'git' through the git-credential store and ssh keys stored on disk or ssh-agent.",
"License": "MIT + file LICENSE",
"URL": "https://docs.ropensci.org/gert/, https://ropensci.r-universe.dev/gert",
"BugReports": "https://github.com/r-lib/gert/issues",
"Imports": [
"askpass",
"credentials (>= 1.2.1)",
"openssl (>= 2.0.3)",
"rstudioapi (>= 0.11)",
"sys",
"zip (>= 2.1.0)"
],
"Suggests": [
"spelling",
"knitr",
"rmarkdown",
"testthat"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"SystemRequirements": "libgit2 (>= 1.0): libgit2-devel (rpm) or libgit2-dev (deb)",
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Jennifer Bryan [ctb] (<https://orcid.org/0000-0002-6983-2759>)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"gh": {
"Package": "gh",
"Version": "1.5.0",
"Source": "Repository",
"Title": "'GitHub' 'API'",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"cre\", \"ctb\")), person(\"Jennifer\", \"Bryan\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Minimal client to access the 'GitHub' 'API'.",
"License": "MIT + file LICENSE",
"URL": "https://gh.r-lib.org/, https://github.com/r-lib/gh#readme",
"BugReports": "https://github.com/r-lib/gh/issues",
"Depends": [
"R (>= 4.1)"
],
"Imports": [
"cli (>= 3.0.1)",
"gitcreds",
"glue",
"httr2 (>= 1.0.6)",
"ini",
"jsonlite",
"lifecycle",
"rlang (>= 1.0.0)"
],
"Suggests": [
"connectcreds",
"covr",
"knitr",
"rmarkdown",
"rprojroot",
"spelling",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-04-29",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.2.9000",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [cre, ctb], Jennifer Bryan [aut], Hadley Wickham [aut], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"gitcreds": {
"Package": "gitcreds",
"Version": "0.1.2",
"Source": "Repository",
"Title": "Query 'git' Credentials from 'R'",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Query, set, delete credentials from the 'git' credential store. Manage 'GitHub' tokens and other 'git' credentials. This package is to be used by other packages that need to authenticate to 'GitHub' and/or other 'git' repositories.",
"License": "MIT + file LICENSE",
"URL": "https://gitcreds.r-lib.org/, https://github.com/r-lib/gitcreds",
"BugReports": "https://github.com/r-lib/gitcreds/issues",
"Depends": [
"R (>= 3.4)"
],
"Suggests": [
"codetools",
"covr",
"knitr",
"mockery",
"oskeyring",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"SystemRequirements": "git",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"highr": {
"Package": "highr",
"Version": "0.11",
"Source": "Repository",
"Type": "Package",
"Title": "Syntax Highlighting for R Source Code",
"Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Yixuan\", \"Qiu\", role = \"aut\"), person(\"Christopher\", \"Gandrud\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\") )",
"Description": "Provides syntax highlighting for R source code. Currently it supports LaTeX and HTML output. Source code of other languages is supported via Andre Simon's highlight package (<https://gitlab.com/saalen/highlight>).",
"Depends": [
"R (>= 3.3.0)"
],
"Imports": [
"xfun (>= 0.18)"
],
"Suggests": [
"knitr",
"markdown",
"testit"
],
"License": "GPL",
"URL": "https://github.com/yihui/highr",
"BugReports": "https://github.com/yihui/highr/issues",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>), Yixuan Qiu [aut], Christopher Gandrud [ctb], Qiang Li [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM"
},
"htmltools": {
"Package": "htmltools",
"Version": "0.5.8.1",
"Source": "Repository",
"Type": "Package",
"Title": "Tools for HTML",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Tools for HTML generation and output.",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools, https://rstudio.github.io/htmltools/",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"Depends": [
"R (>= 2.14.1)"
],
"Imports": [
"base64enc",
"digest",
"fastmap (>= 1.1.0)",
"grDevices",
"rlang (>= 1.0.0)",
"utils"
],
"Suggests": [
"Cairo",
"markdown",
"ragg",
"shiny",
"testthat",
"withr"
],
"Enhances": [
"knitr"
],
"Config/Needs/check": "knitr",
"Config/Needs/website": "rstudio/quillt, bench",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R' 'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R' 'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>), Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>), Yihui Xie [aut], Jeff Allen [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "RSPM"
},
"htmlwidgets": {
"Package": "htmlwidgets",
"Version": "1.6.4",
"Source": "Repository",
"Type": "Package",
"Title": "HTML Widgets for R",
"Authors@R": "c( person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")), person(\"Yihui\", \"Xie\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/ramnathv/htmlwidgets",
"BugReports": "https://github.com/ramnathv/htmlwidgets/issues",
"Imports": [
"grDevices",
"htmltools (>= 0.5.7)",
"jsonlite (>= 0.9.16)",
"knitr (>= 1.8)",
"rmarkdown",
"yaml"
],
"Suggests": [
"testthat"
],
"Enhances": [
"shiny (>= 1.1)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Ramnath Vaidyanathan [aut, cph], Yihui Xie [aut], JJ Allaire [aut], Joe Cheng [aut], Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Kenton Russell [aut, cph], Ellis Hughes [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "RSPM"
},
"httpuv": {
"Package": "httpuv",
"Version": "1.6.16",
"Source": "Repository",
"Type": "Package",
"Title": "HTTP and WebSocket Server Library",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", \"fnd\", role = \"cph\"), person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"), person(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"), person(\"Internet Systems Consortium, Inc.\", role = \"cph\", comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"), person(\"Alexander\", \"Chemeris\", role = \"cph\", comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"), person(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Sony Mobile Communcations AB\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Berkeley Software Design Inc.\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Kenneth\", \"MacKay\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"), person(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"), person(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"), person(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\") )",
"Description": "Provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. (See LICENSE file for libuv and http-parser license information.)",
"License": "GPL (>= 2) | file LICENSE",
"URL": "https://github.com/rstudio/httpuv",
"BugReports": "https://github.com/rstudio/httpuv/issues",
"Depends": [
"R (>= 2.15.1)"
],
"Imports": [
"later (>= 0.8.0)",
"promises",
"R6",
"Rcpp (>= 1.0.7)",
"utils"
],
"Suggests": [
"callr",
"curl",
"jsonlite",
"testthat",
"websocket"
],
"LinkingTo": [
"later",
"Rcpp"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "GNU make, zlib",
"Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R' 'staticServer.R' 'static_paths.R' 'utils.R'",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut], Winston Chang [aut, cre], Posit, PBC fnd [cph], Hector Corrada Bravo [ctb], Jeroen Ooms [ctb], Andrzej Krzemienski [cph] (optional.hpp), libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS file), Joyent, Inc. and other Node contributors [cph] (libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file), Niels Provos [cph] (libuv subcomponent: tree.h), Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c), Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from msinttypes)), Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c), Sony Mobile Communcations AB [cph] (libuv subcomponent: pthread-fixes.c), Berkeley Software Design Inc. [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Steve Reid [aut] (SHA-1 implementation), James Brown [aut] (SHA-1 implementation), Bob Trower [aut] (base64 implementation), Alexander Peslyak [aut] (MD5 implementation), Trantor Standard Systems [cph] (base64 implementation), Igor Sysoev [cph] (http-parser)",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN"
},
"httr2": {
"Package": "httr2",
"Version": "1.1.2",
"Source": "Repository",
"Title": "Perform HTTP Requests and Process the Responses",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Maximilian\", \"Girlich\", role = \"ctb\") )",
"Description": "Tools for creating and modifying HTTP requests, then performing them and processing the results. 'httr2' is a modern re-imagining of 'httr' that uses a pipe-based interface and solves more of the problems that API wrapping packages face.",
"License": "MIT + file LICENSE",
"URL": "https://httr2.r-lib.org, https://github.com/r-lib/httr2",
"BugReports": "https://github.com/r-lib/httr2/issues",
"Depends": [
"R (>= 4.0)"
],
"Imports": [
"cli (>= 3.0.0)",
"curl (>= 6.2.1)",
"glue",
"lifecycle",
"magrittr",
"openssl",
"R6",
"rappdirs",
"rlang (>= 1.1.0)",
"vctrs (>= 0.6.3)",
"withr"
],
"Suggests": [
"askpass",
"bench",
"clipr",
"covr",
"docopt",
"httpuv",
"jose",
"jsonlite",
"knitr",
"later (>= 1.4.0)",
"nanonext",
"paws.common",
"promises",
"rmarkdown",
"testthat (>= 3.1.8)",
"tibble",
"webfakes",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "multi-req, resp-stream, req-perform",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], Maximilian Girlich [ctb]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"ini": {
"Package": "ini",
"Version": "0.3.1",
"Source": "Repository",
"Type": "Package",
"Title": "Read and Write '.ini' Files",
"Date": "2018-05-19",
"Author": "David Valentim Dias",
"Maintainer": "David Valentim Dias <dvdscripter@gmail.com>",
"Description": "Parse simple '.ini' configuration files to an structured list. Users can manipulate this resulting list with lapply() functions. This same structured list can be used to write back to file after modifications.",
"License": "GPL-3",
"URL": "https://github.com/dvdscripter/ini",
"BugReports": "https://github.com/dvdscripter/ini/issues",
"LazyData": "FALSE",
"RoxygenNote": "6.0.1",
"Suggests": [
"testthat"
],
"NeedsCompilation": "no",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"jquerylib": {
"Package": "jquerylib",
"Version": "0.1.4",
"Source": "Repository",
"Title": "Obtain 'jQuery' as an HTML Dependency Object",
"Authors@R": "c( person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"), person(family = \"RStudio\", role = \"cph\"), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt\") )",
"Description": "Obtain any major version of 'jQuery' (<https://code.jquery.com/>) and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown'). Most R users don't need to use this package directly, but other R packages (e.g. 'shiny', 'rmarkdown', etc.) depend on this package to avoid bundling redundant copies of 'jQuery'.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"RoxygenNote": "7.0.2",
"Imports": [
"htmltools"
],
"Suggests": [
"testthat"
],
"NeedsCompilation": "no",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Joe Cheng [aut], RStudio [cph], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"knitr": {
"Package": "knitr",
"Version": "1.50",
"Source": "Repository",
"Type": "Package",
"Title": "A General-Purpose Package for Dynamic Report Generation in R",
"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(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides a general-purpose tool for dynamic report generation in R using Literate Programming techniques.",
"Depends": [
"R (>= 3.6.0)"
],
"Imports": [
"evaluate (>= 0.15)",
"highr (>= 0.11)",
"methods",
"tools",
"xfun (>= 0.51)",
"yaml (>= 2.1.19)"
],
"Suggests": [
"bslib",
"codetools",
"DBI (>= 0.4-1)",
"digest",
"formatR",
"gifski",
"gridSVG",
"htmlwidgets (>= 0.7)",
"jpeg",
"JuliaCall (>= 0.11.1)",
"magick",
"litedown",
"markdown (>= 1.3)",
"png",
"ragg",
"reticulate (>= 1.4)",
"rgl (>= 0.95.1201)",
"rlang",
"rmarkdown",
"sass",
"showtext",
"styler (>= 1.2.0)",
"targets (>= 0.6.0)",
"testit",
"tibble",
"tikzDevice (>= 0.10)",
"tinytex (>= 0.56)",
"webshot",
"rstudioapi",
"svglite"
],
"License": "GPL",
"URL": "https://yihui.org/knitr/",
"BugReports": "https://github.com/yihui/knitr/issues",
"Encoding": "UTF-8",
"VignetteBuilder": "litedown, knitr",
"SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).",
"Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>, https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (<https://orcid.org/0000-0002-9101-3362>), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (<https://orcid.org/0000-0003-1413-3974>), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (<https://orcid.org/0000-0003-1458-7108>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM"
},
"later": {
"Package": "later",
"Version": "1.4.2",
"Source": "Repository",
"Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event Loops",
"Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"), person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@posit.co\"), person(\"Charlie\", \"Gao\", role = c(\"aut\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(family = \"Posit Software, PBC\", role = \"cph\"), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )",
"Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in an event loop.",
"URL": "https://r-lib.github.io/later/, https://github.com/r-lib/later",
"BugReports": "https://github.com/r-lib/later/issues",
"License": "MIT + file LICENSE",
"Imports": [
"Rcpp (>= 0.12.9)",
"rlang"
],
"LinkingTo": [
"Rcpp"
],
"RoxygenNote": "7.3.2",
"Suggests": [
"knitr",
"nanonext",
"R6",
"rmarkdown",
"testthat (>= 2.1.0)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Joe Cheng [aut], Charlie Gao [aut] (<https://orcid.org/0000-0002-0750-061X>), Posit Software, PBC [cph], Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"magrittr": {
"Package": "magrittr",
"Version": "2.0.3",
"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@rstudio.com\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"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.1.2",
"NeedsCompilation": "yes",
"Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@rstudio.com>",
"Repository": "RSPM"
},
"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": "RSPM"
},
"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": "RSPM"
},
"miniUI": {
"Package": "miniUI",
"Version": "0.1.2",
"Source": "Repository",
"Type": "Package",
"Title": "Shiny UI Widgets for Small Screens",
"Authors@R": "c( person(\"Joe\", \"Cheng\", role = c(\"cre\", \"aut\"), email = \"joe@posit.co\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides UI widget and layout functions for writing Shiny apps that work well on small screens.",
"License": "GPL-3",
"URL": "https://github.com/rstudio/miniUI",
"BugReports": "https://github.com/rstudio/miniUI/issues",
"Imports": [
"shiny (>= 0.13)",
"htmltools (>= 0.3)",
"utils"
],
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Joe Cheng [cre, aut], Posit Software, PBC [cph, fnd] (03wc8by49)",
"Maintainer": "Joe Cheng <joe@posit.co>",
"Repository": "RSPM"
},
"openssl": {
"Package": "openssl",
"Version": "2.3.3",
"Source": "Repository",
"Type": "Package",
"Title": "Toolkit for Encryption, Signatures and Certificates Based on OpenSSL",
"Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Oliver\", \"Keyes\", role = \"ctb\"))",
"Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic signatures can either be created and verified manually or via x509 certificates. AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric (public key) encryption or EC for Diffie Hellman. High-level envelope functions combine RSA and AES for encrypting arbitrary sized data. Other utilities include key generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random number generator, and 'bignum' math methods for manually performing crypto calculations on large multibyte integers.",
"License": "MIT + file LICENSE",
"URL": "https://jeroen.r-universe.dev/openssl",
"BugReports": "https://github.com/jeroen/openssl/issues",
"SystemRequirements": "OpenSSL >= 1.0.2",
"VignetteBuilder": "knitr",
"Imports": [
"askpass"
],
"Suggests": [
"curl",
"testthat (>= 2.1.0)",
"digest",
"knitr",
"rmarkdown",
"jsonlite",
"jose",
"sodium"
],
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>), Oliver Keyes [ctb]",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"pillar": {
"Package": "pillar",
"Version": "1.10.2",
"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)",
"utf8 (>= 1.1.0)",
"utils",
"vctrs (>= 0.5.0)"
],
"Suggests": [
"bit64",
"DBI",
"debugme",
"DiagrammeR",
"dplyr",
"formattable",
"ggplot2",
"knitr",
"lubridate",
"nanotime",
"nycflights13",
"palmerpenguins",
"rmarkdown",
"scales",
"stringi",
"survival",
"testthat (>= 3.1.1)",
"tibble",
"units (>= 0.7.2)",
"vdiffr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/gha/extra-packages": "units=?ignore-before-r=4.3.0",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], RStudio [cph]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "RSPM"
},
"pkgbuild": {
"Package": "pkgbuild",
"Version": "1.4.8",
"Source": "Repository",
"Title": "Find Tools Needed to Build R Packages",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms and ensures the PATH is configured appropriately so R can use them.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/pkgbuild, https://pkgbuild.r-lib.org",
"BugReports": "https://github.com/r-lib/pkgbuild/issues",
"Depends": [
"R (>= 3.5)"
],
"Imports": [
"callr (>= 3.2.0)",
"cli (>= 3.4.0)",
"desc",
"processx",
"R6"
],
"Suggests": [
"covr",
"cpp11",
"knitr",
"Rcpp",
"rmarkdown",
"testthat (>= 3.2.0)",
"withr (>= 2.3.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-04-30",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"pkgconfig": {
"Package": "pkgconfig",
"Version": "2.0.3",
"Source": "Repository",
"Title": "Private Configuration for 'R' Packages",
"Author": "Gábor Csárdi",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Description": "Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"Imports": [
"utils"
],
"Suggests": [
"covr",
"testthat",
"disposables (>= 1.0.3)"
],
"URL": "https://github.com/r-lib/pkgconfig#readme",
"BugReports": "https://github.com/r-lib/pkgconfig/issues",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Repository": "RSPM"
},
"pkgdown": {
"Package": "pkgdown",
"Version": "2.1.3",
"Source": "Repository",
"Title": "Make Static HTML Documentation for a Package",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jay\", \"Hesselberth\", role = \"aut\", comment = c(ORCID = \"0000-0002-6299-179X\")), person(\"Maëlle\", \"Salmon\", role = \"aut\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Olivier\", \"Roy\", role = \"aut\"), person(\"Salim\", \"Brüggemann\", role = \"aut\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Generate an attractive and useful website from a source package. 'pkgdown' converts your documentation, vignettes, 'README', and more to 'HTML' making it easy to share information about your package online.",
"License": "MIT + file LICENSE",
"URL": "https://pkgdown.r-lib.org/, https://github.com/r-lib/pkgdown",
"BugReports": "https://github.com/r-lib/pkgdown/issues",
"Depends": [
"R (>= 4.0.0)"
],
"Imports": [
"bslib (>= 0.5.1)",
"callr (>= 3.7.3)",
"cli (>= 3.6.1)",
"desc (>= 1.4.0)",
"downlit (>= 0.4.4)",
"fontawesome",
"fs (>= 1.4.0)",
"httr2 (>= 1.0.2)",
"jsonlite",
"openssl",
"purrr (>= 1.0.0)",
"ragg (>= 1.4.0)",
"rlang (>= 1.1.4)",
"rmarkdown (>= 2.27)",
"tibble",
"whisker",
"withr (>= 2.4.3)",
"xml2 (>= 1.3.1)",
"yaml"
],
"Suggests": [
"covr",
"diffviewer",
"evaluate (>= 0.24.0)",
"gert",
"gt",
"htmltools",
"htmlwidgets",
"knitr (>= 1.50)",
"lifecycle",
"magick",
"methods",
"pkgload (>= 1.0.2)",
"quarto",
"rsconnect",
"rstudioapi",
"rticles",
"sass",
"testthat (>= 3.1.3)",
"tools"
],
"VignetteBuilder": "knitr, quarto",
"Config/Needs/website": "usethis, servr",
"Config/potools/style": "explicit",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "build-article, build-quarto-article, build-reference",
"Encoding": "UTF-8",
"SystemRequirements": "pandoc",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Jay Hesselberth [aut] (ORCID: <https://orcid.org/0000-0002-6299-179X>), Maëlle Salmon [aut] (ORCID: <https://orcid.org/0000-0002-2815-0399>), Olivier Roy [aut], Salim Brüggemann [aut] (ORCID: <https://orcid.org/0000-0002-5329-5987>), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"pkgload": {
"Package": "pkgload",
"Version": "1.4.0",
"Source": "Repository",
"Title": "Simulate Package Installation and Attach",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Some namespace and vignette code extracted from base R\") )",
"Description": "Simulates the process of installing a package and then attaching it. This is a key part of the 'devtools' package as it allows you to rapidly iterate while developing a package.",
"License": "GPL-3",
"URL": "https://github.com/r-lib/pkgload, https://pkgload.r-lib.org",
"BugReports": "https://github.com/r-lib/pkgload/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Imports": [
"cli (>= 3.3.0)",
"desc",
"fs",
"glue",
"lifecycle",
"methods",
"pkgbuild",
"processx",
"rlang (>= 1.1.1)",
"rprojroot",
"utils",
"withr (>= 2.4.3)"
],
"Suggests": [
"bitops",
"jsonlite",
"mathjaxr",
"pak",
"Rcpp",
"remotes",
"rstudioapi",
"testthat (>= 3.2.1.1)",
"usethis"
],
"Config/Needs/website": "tidyverse/tidytemplate, ggplot2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "TRUE",
"Config/testthat/start-first": "dll",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], Lionel Henry [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Some namespace and vignette code extracted from base R)",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "RSPM"
},
"praise": {
"Package": "praise",
"Version": "1.0.0",
"Source": "Repository",
"Title": "Praise Users",
"Author": "Gabor Csardi, Sindre Sorhus",
"Maintainer": "Gabor Csardi <csardi.gabor@gmail.com>",
"Description": "Build friendly R packages that praise their users if they have done something good, or they just need it to feel better.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/gaborcsardi/praise",
"BugReports": "https://github.com/gaborcsardi/praise/issues",
"Suggests": [
"testthat"
],
"Collate": "'adjective.R' 'adverb.R' 'exclamation.R' 'verb.R' 'rpackage.R' 'package.R'",
"NeedsCompilation": "no",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"prettyunits": {
"Package": "prettyunits",
"Version": "1.2.0",
"Source": "Repository",
"Title": "Pretty, Human Readable Formatting of Quantities",
"Authors@R": "c( person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\")) )",
"Description": "Pretty, human readable formatting of quantities. Time intervals: '1337000' -> '15d 11h 23m 20s'. Vague time intervals: '2674000' -> 'about a month ago'. Bytes: '1337' -> '1.34 kB'. Rounding: '99' with 3 significant digits -> '99.0' p-values: '0.00001' -> '<0.0001'. Colors: '#FF0000' -> 'red'. Quantities: '1239437' -> '1.24 M'.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/prettyunits",
"BugReports": "https://github.com/r-lib/prettyunits/issues",
"Depends": [
"R(>= 2.10)"
],
"Suggests": [
"codetools",
"covr",
"testthat"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Gabor Csardi [aut, cre], Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>), Christophe Regouby [ctb]",
"Maintainer": "Gabor Csardi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"processx": {
"Package": "processx",
"Version": "3.8.6",
"Source": "Repository",
"Title": "Execute and Control System Processes",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )",
"Description": "Tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.",
"License": "MIT + file LICENSE",
"URL": "https://processx.r-lib.org, https://github.com/r-lib/processx",
"BugReports": "https://github.com/r-lib/processx/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Imports": [
"ps (>= 1.2.0)",
"R6",
"utils"
],
"Suggests": [
"callr (>= 3.7.3)",
"cli (>= 3.3.0)",
"codetools",
"covr",
"curl",
"debugme",
"parallel",
"rlang (>= 1.0.2)",
"testthat (>= 3.0.0)",
"webfakes",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "yes",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"profvis": {
"Package": "profvis",
"Version": "0.4.0",
"Source": "Repository",
"Title": "Interactive Visualizations for Profiling R Code",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Javier\", \"Luraschi\", role = \"aut\"), person(\"Timothy\", \"Mastny\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library\"), person(, \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/htmlwidgets/lib/jquery/AUTHORS.txt\"), person(\"Mike\", \"Bostock\", role = c(\"ctb\", \"cph\"), comment = \"D3 library\"), person(, \"D3 contributors\", role = \"ctb\", comment = \"D3 library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\") )",
"Description": "Interactive visualizations for profiling R code.",
"License": "MIT + file LICENSE",
"URL": "https://profvis.r-lib.org, https://github.com/r-lib/profvis",
"BugReports": "https://github.com/r-lib/profvis/issues",
"Depends": [
"R (>= 4.0)"
],
"Imports": [
"htmlwidgets (>= 0.3.2)",
"rlang (>= 1.1.0)",
"vctrs"
],
"Suggests": [
"htmltools",
"knitr",
"rmarkdown",
"shiny",
"testthat (>= 3.0.0)"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate, rmarkdown",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre], Winston Chang [aut], Javier Luraschi [aut], Timothy Mastny [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/htmlwidgets/lib/jquery/AUTHORS.txt), Mike Bostock [ctb, cph] (D3 library), D3 contributors [ctb] (D3 library), Ivan Sagalaev [ctb, cph] (highlight.js library)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"promises": {
"Package": "promises",
"Version": "1.3.3",
"Source": "Repository",
"Type": "Package",
"Title": "Abstractions for Promise-Based Asynchronous Programming",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/promises/, https://github.com/rstudio/promises",
"BugReports": "https://github.com/rstudio/promises/issues",
"Imports": [
"fastmap (>= 1.1.0)",
"later",
"magrittr (>= 1.5)",
"R6",
"Rcpp",
"rlang",
"stats"
],
"Suggests": [
"future (>= 1.21.0)",
"knitr",
"purrr",
"rmarkdown",
"spelling",
"testthat (>= 3.0.0)",
"vembedr"
],
"LinkingTo": [
"later",
"Rcpp"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "rsconnect, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-05-27",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut, cre], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Joe Cheng <joe@posit.co>",
"Repository": "RSPM"
},
"ps": {
"Package": "ps",
"Version": "1.9.1",
"Source": "Repository",
"Title": "List, Query, Manipulate System Processes",
"Authors@R": "c( person(\"Jay\", \"Loden\", role = \"aut\"), person(\"Dave\", \"Daeschler\", role = \"aut\"), person(\"Giampaolo\", \"Rodola'\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "List, query and manipulate all system processes, on 'Windows', 'Linux' and 'macOS'.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/ps, https://ps.r-lib.org/",
"BugReports": "https://github.com/r-lib/ps/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"utils"
],
"Suggests": [
"callr",
"covr",
"curl",
"pillar",
"pingr",
"processx (>= 3.1.0)",
"R6",
"rlang",
"testthat (>= 3.0.0)",
"webfakes",
"withr"
],
"Biarch": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"purrr": {
"Package": "purrr",
"Version": "1.0.4",
"Source": "Repository",
"Title": "Functional Programming Tools",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "A complete and consistent functional programming toolkit for R.",
"License": "MIT + file LICENSE",
"URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr",
"BugReports": "https://github.com/tidyverse/purrr/issues",
"Depends": [
"R (>= 4.0)"
],
"Imports": [
"cli (>= 3.6.1)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 1.5.0)",
"rlang (>= 1.1.1)",
"vctrs (>= 0.6.3)"
],
"Suggests": [
"covr",
"dplyr (>= 0.7.8)",
"httr",
"knitr",
"lubridate",
"rmarkdown",
"testthat (>= 3.0.0)",
"tibble",
"tidyselect"
],
"LinkingTo": [
"cli"
],
"VignetteBuilder": "knitr",
"Biarch": "true",
"Config/build/compilation-database": "true",
"Config/Needs/website": "tidyverse/tidytemplate, tidyr",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "TRUE",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Lionel Henry [aut], Posit Software, PBC [cph, fnd] (03wc8by49)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"ragg": {
"Package": "ragg",
"Version": "1.4.0",
"Source": "Repository",
"Type": "Package",
"Title": "Graphic Devices Based on AGG",
"Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Maxim\", \"Shemanarev\", role = c(\"aut\", \"cph\"), comment = \"Author of AGG\"), person(\"Tony\", \"Juricic\", , \"tonygeek@yahoo.com\", role = c(\"ctb\", \"cph\"), comment = \"Contributor to AGG\"), person(\"Milan\", \"Marusinec\", , \"milan@marusinec.sk\", role = c(\"ctb\", \"cph\"), comment = \"Contributor to AGG\"), person(\"Spencer\", \"Garrett\", role = \"ctb\", comment = \"Contributor to AGG\"), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )",
"Maintainer": "Thomas Lin Pedersen <thomas.pedersen@posit.co>",
"Description": "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D drawing library. The 'ragg' package provides a set of graphic devices based on AGG to use as alternative to the raster devices provided through the 'grDevices' package.",
"License": "MIT + file LICENSE",
"URL": "https://ragg.r-lib.org, https://github.com/r-lib/ragg",
"BugReports": "https://github.com/r-lib/ragg/issues",
"Imports": [
"systemfonts (>= 1.0.3)",
"textshaping (>= 0.3.0)"
],
"Suggests": [
"covr",
"graphics",
"grid",
"testthat (>= 3.0.0)"
],
"LinkingTo": [
"systemfonts",
"textshaping"
],
"Config/Needs/website": "ggplot2, devoid, magick, bench, tidyr, ggridges, hexbin, sessioninfo, pkgdown, tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "freetype2, libpng, libtiff, libjpeg",
"Config/testthat/edition": "3",
"Config/build/compilation-database": "true",
"NeedsCompilation": "yes",
"Author": "Thomas Lin Pedersen [cre, aut] (<https://orcid.org/0000-0002-5147-4711>), Maxim Shemanarev [aut, cph] (Author of AGG), Tony Juricic [ctb, cph] (Contributor to AGG), Milan Marusinec [ctb, cph] (Contributor to AGG), Spencer Garrett [ctb] (Contributor to AGG), Posit, PBC [cph, fnd]",
"Repository": "RSPM"
},
"rappdirs": {
"Package": "rappdirs",
"Version": "0.3.3",
"Source": "Repository",
"Type": "Package",
"Title": "Application Directories: Determine Where to Save Data, Caches, and Logs",
"Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = c(\"trl\", \"cre\", \"cph\"), email = \"hadley@rstudio.com\"), person(given = \"RStudio\", role = \"cph\"), person(given = \"Sridhar\", family = \"Ratnakumar\", role = \"aut\"), person(given = \"Trent\", family = \"Mick\", role = \"aut\"), person(given = \"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(given = \"Eddy\", family = \"Petrisor\", role = \"ctb\"), person(given = \"Trevor\", family = \"Davis\", role = c(\"trl\", \"aut\")), person(given = \"Gabor\", family = \"Csardi\", role = \"ctb\"), person(given = \"Gregory\", family = \"Jefferis\", role = \"ctb\"))",
"Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' (<https://github.com/ActiveState/appdirs>) to R.",
"License": "MIT + file LICENSE",
"URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs",
"BugReports": "https://github.com/r-lib/rappdirs/issues",
"Depends": [
"R (>= 3.2)"
],
"Suggests": [
"roxygen2",
"testthat (>= 3.0.0)",
"covr",
"withr"
],
"Copyright": "Original python appdirs module copyright (c) 2010 ActiveState Software Inc. R port copyright Hadley Wickham, RStudio. See file LICENSE for details.",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [trl, cre, cph], RStudio [cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut], Gabor Csardi [ctb], Gregory Jefferis [ctb]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "RSPM"
},
"rcmdcheck": {
"Package": "rcmdcheck",
"Version": "1.4.0",
"Source": "Repository",
"Title": "Run 'R CMD check' from 'R' and Capture Results",
"Authors@R": "person(given = \"Gábor\", family = \"Csárdi\", role = c(\"cre\", \"aut\"), email = \"csardi.gabor@gmail.com\")",
"Description": "Run 'R CMD check' from 'R' and capture the results of the individual checks. Supports running checks in the background, timeouts, pretty printing and comparing check results.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.github.io/rcmdcheck/, https://github.com/r-Lib/rcmdcheck#readme",
"BugReports": "https://github.com/r-Lib/rcmdcheck/issues",
"Imports": [
"callr (>= 3.1.1.9000)",
"cli (>= 3.0.0)",
"curl",
"desc (>= 1.2.0)",
"digest",
"pkgbuild",
"prettyunits",
"R6",
"rprojroot",
"sessioninfo (>= 1.1.1)",
"utils",
"withr",
"xopen"
],
"Suggests": [
"covr",
"knitr",
"mockery",
"processx",
"ps",
"rmarkdown",
"svglite",
"testthat",
"webfakes"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [cre, aut]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"remotes": {
"Package": "remotes",
"Version": "2.5.0",
"Source": "Repository",
"Title": "R Package Installation from Remote Repositories, Including 'GitHub'",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Martin\", \"Morgan\", role = \"aut\"), person(\"Dan\", \"Tenenbaum\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = \"cph\") )",
"Description": "Download and install R packages stored in 'GitHub', 'GitLab', 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git' repositories. This package provides the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'.",
"License": "MIT + file LICENSE",
"URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme",
"BugReports": "https://github.com/r-lib/remotes/issues",
"Depends": [
"R (>= 3.0.0)"
],
"Imports": [
"methods",
"stats",
"tools",
"utils"
],
"Suggests": [
"brew",
"callr",
"codetools",
"covr",
"curl",
"git2r (>= 0.23.0)",
"knitr",
"mockery",
"pingr",
"pkgbuild (>= 1.0.1)",
"rmarkdown",
"rprojroot",
"testthat (>= 3.0.0)",
"webfakes",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"SystemRequirements": "Subversion for install_svn, git for install_git",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Jim Hester [aut], Hadley Wickham [aut], Winston Chang [aut], Martin Morgan [aut], Dan Tenenbaum [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"renv": {
"Package": "renv",
"Version": "1.1.4",
"Source": "Repository",
"Type": "Package",
"Title": "Project Environments",
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv",
"BugReports": "https://github.com/rstudio/renv/issues",
"Imports": [
"utils"
],
"Suggests": [
"BiocManager",
"cli",
"compiler",
"covr",
"cpp11",
"devtools",
"gitcreds",
"jsonlite",
"jsonvalidate",
"knitr",
"miniUI",
"modules",
"packrat",
"pak",
"R6",
"remotes",
"reticulate",
"rmarkdown",
"rstudioapi",
"shiny",
"testthat",
"uuid",
"waldo",
"yaml",
"webfakes"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes",
"NeedsCompilation": "no",
"Author": "Kevin Ushey [aut, cre] (<https://orcid.org/0000-0003-2880-7407>), Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Kevin Ushey <kevin@rstudio.com>",
"Repository": "RSPM"
},
"rlang": {
"Package": "rlang",
"Version": "1.1.6",
"Source": "Repository",
"Title": "Functions for Base Types and Core R and 'Tidyverse' Features",
"Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.",
"Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"), person(given = \"mikefc\", email = \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )",
"License": "MIT + file LICENSE",
"ByteCompile": "true",
"Biarch": "true",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"utils"
],
"Suggests": [
"cli (>= 3.1.0)",
"covr",
"crayon",
"desc",
"fs",
"glue",
"knitr",
"magrittr",
"methods",
"pillar",
"pkgload",
"rmarkdown",
"stats",
"testthat (>= 3.2.0)",
"tibble",
"usethis",
"vctrs (>= 0.2.3)",
"withr"
],
"Enhances": [
"winch"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang",
"BugReports": "https://github.com/r-lib/rlang/issues",
"Config/build/compilation-database": "true",
"Config/testthat/edition": "3",
"Config/Needs/website": "dplyr, tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], mikefc [cph] (Hash implementation based on Mike's xxhashlite), Yann Collet [cph] (Author of the embedded xxHash library), Posit, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "CRAN"
},
"rmarkdown": {
"Package": "rmarkdown",
"Version": "2.29",
"Source": "Repository",
"Type": "Package",
"Title": "Dynamic Documents for R",
"Authors@R": "c( person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"), person(\"Yihui\", \"Xie\", , \"xie@yihui.name\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"), person(\"Javier\", \"Luraschi\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"aut\"), person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Andrew\", \"Dunning\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0464-5036\")), person(\"Atsushi\", \"Yasumoto\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-8335-495X\", cph = \"Number sections Lua filter\")), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Carson\", \"Sievert\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Devon\", \"Ryan\", , \"dpryan79@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(\"Jeff\", \"Allen\", , \"jeff@posit.co\", role = \"ctb\"), person(\"JooYoung\", \"Seo\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Malcolm\", \"Barrett\", role = \"ctb\"), person(\"Rob\", \"Hyndman\", , \"Rob.Hyndman@monash.edu\", role = \"ctb\"), person(\"Romain\", \"Lesur\", role = \"ctb\"), person(\"Roy\", \"Storey\", role = \"ctb\"), person(\"Ruben\", \"Arslan\", , \"ruben.arslan@uni-goettingen.de\", role = \"ctb\"), person(\"Sergio\", \"Oller\", role = \"ctb\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"), comment = \"html5shiv library\"), person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"), comment = \"Respond.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"), comment = \"tocify library\"), person(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"), comment = \"Pandoc templates\"), person(, \"Google, Inc.\", role = c(\"ctb\", \"cph\"), comment = \"ioslides library\"), person(\"Dave\", \"Raggett\", role = \"ctb\", comment = \"slidy library\"), person(, \"W3C\", role = \"cph\", comment = \"slidy library\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome\"), person(\"Ben\", \"Sperry\", role = \"ctb\", comment = \"Ionicons\"), person(, \"Drifty\", role = \"cph\", comment = \"Ionicons\"), person(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), comment = \"jQuery StickyTabs\"), person(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\"), person(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\") )",
"Description": "Convert R Markdown documents into a variety of formats.",
"License": "GPL-3",
"URL": "https://github.com/rstudio/rmarkdown, https://pkgs.rstudio.com/rmarkdown/",
"BugReports": "https://github.com/rstudio/rmarkdown/issues",
"Depends": [
"R (>= 3.0)"
],
"Imports": [
"bslib (>= 0.2.5.1)",
"evaluate (>= 0.13)",
"fontawesome (>= 0.5.0)",
"htmltools (>= 0.5.1)",
"jquerylib",
"jsonlite",
"knitr (>= 1.43)",
"methods",
"tinytex (>= 0.31)",
"tools",
"utils",
"xfun (>= 0.36)",
"yaml (>= 2.1.19)"
],
"Suggests": [
"digest",
"dygraphs",
"fs",
"rsconnect",
"downlit (>= 0.4.0)",
"katex (>= 1.4.0)",
"sass (>= 0.4.0)",
"shiny (>= 1.6.0)",
"testthat (>= 3.0.3)",
"tibble",
"vctrs",
"cleanrmd",
"withr (>= 2.4.2)",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "rstudio/quillt, pkgdown",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "pandoc (>= 1.14) - http://pandoc.org",
"NeedsCompilation": "no",
"Author": "JJ Allaire [aut], Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>), Christophe Dervieux [aut] (<https://orcid.org/0000-0003-4474-2498>), Jonathan McPherson [aut], Javier Luraschi [aut], Kevin Ushey [aut], Aron Atkins [aut], Hadley Wickham [aut], Joe Cheng [aut], Winston Chang [aut], Richard Iannone [aut] (<https://orcid.org/0000-0003-3925-190X>), Andrew Dunning [ctb] (<https://orcid.org/0000-0003-0464-5036>), Atsushi Yasumoto [ctb, cph] (<https://orcid.org/0000-0002-8335-495X>, Number sections Lua filter), Barret Schloerke [ctb], Carson Sievert [ctb] (<https://orcid.org/0000-0002-4958-2844>), Devon Ryan [ctb] (<https://orcid.org/0000-0002-8549-0971>), Frederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>), Jeff Allen [ctb], JooYoung Seo [ctb] (<https://orcid.org/0000-0002-4064-6012>), Malcolm Barrett [ctb], Rob Hyndman [ctb], Romain Lesur [ctb], Roy Storey [ctb], Ruben Arslan [ctb], Sergio Oller [ctb], Posit Software, PBC [cph, fnd], jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Alexander Farkas [ctb, cph] (html5shiv library), Scott Jehl [ctb, cph] (Respond.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), Greg Franko [ctb, cph] (tocify library), John MacFarlane [ctb, cph] (Pandoc templates), Google, Inc. [ctb, cph] (ioslides library), Dave Raggett [ctb] (slidy library), W3C [cph] (slidy library), Dave Gandy [ctb, cph] (Font-Awesome), Ben Sperry [ctb] (Ionicons), Drifty [cph] (Ionicons), Aidan Lister [ctb, cph] (jQuery StickyTabs), Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter), Albert Krewinkel [ctb, cph] (pagebreak Lua filter)",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM"
},
"roxygen2": {
"Package": "roxygen2",
"Version": "7.3.2",
"Source": "Repository",
"Title": "In-Line Documentation for R",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Peter\", \"Danenberg\", , \"pcd@roxygen.org\", role = c(\"aut\", \"cph\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"aut\"), person(\"Manuel\", \"Eugster\", role = c(\"aut\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Generate your Rd documentation, 'NAMESPACE' file, and collation field using specially formatted comments. Writing documentation in-line with code makes it easier to keep your documentation up-to-date as your requirements change. 'roxygen2' is inspired by the 'Doxygen' system for C++.",
"License": "MIT + file LICENSE",
"URL": "https://roxygen2.r-lib.org/, https://github.com/r-lib/roxygen2",
"BugReports": "https://github.com/r-lib/roxygen2/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"brew",
"cli (>= 3.3.0)",
"commonmark",
"desc (>= 1.2.0)",
"knitr",
"methods",
"pkgload (>= 1.0.2)",
"purrr (>= 1.0.0)",
"R6 (>= 2.1.2)",
"rlang (>= 1.0.6)",
"stringi",
"stringr (>= 1.0.0)",
"utils",
"withr",
"xml2"
],
"Suggests": [
"covr",
"R.methodsS3",
"R.oo",
"rmarkdown (>= 2.16)",
"testthat (>= 3.1.2)",
"yaml"
],
"LinkingTo": [
"cpp11"
],
"VignetteBuilder": "knitr",
"Config/Needs/development": "testthat",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "TRUE",
"Encoding": "UTF-8",
"Language": "en-GB",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre, cph] (<https://orcid.org/0000-0003-4757-117X>), Peter Danenberg [aut, cph], Gábor Csárdi [aut], Manuel Eugster [aut, cph], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"rprojroot": {
"Package": "rprojroot",
"Version": "2.0.4",
"Source": "Repository",
"Title": "Finding Files in Project Subdirectories",
"Authors@R": "person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\"))",
"Description": "Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a directory that matches a certain criterion, e.g., it contains a certain regular file.",
"License": "MIT + file LICENSE",
"URL": "https://rprojroot.r-lib.org/, https://github.com/r-lib/rprojroot",
"BugReports": "https://github.com/r-lib/rprojroot/issues",
"Depends": [
"R (>= 3.0.0)"
],
"Suggests": [
"covr",
"knitr",
"lifecycle",
"mockr",
"rlang",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "RSPM"
},
"rstudioapi": {
"Package": "rstudioapi",
"Version": "0.17.1",
"Source": "Repository",
"Title": "Safely Access the RStudio API",
"Description": "Access the RStudio API (if available) and provide informative error messages when it's not.",
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\"), person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@posit.co\"), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@posit.co\"), person(\"Gary\", \"Ritchie\", role = c(\"aut\"), email = \"gary@posit.co\"), person(family = \"RStudio\", role = \"cph\") )",
"Maintainer": "Kevin Ushey <kevin@rstudio.com>",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/rstudioapi/, https://github.com/rstudio/rstudioapi",
"BugReports": "https://github.com/rstudio/rstudioapi/issues",
"RoxygenNote": "7.3.2",
"Suggests": [
"testthat",
"knitr",
"rmarkdown",
"clipr",
"covr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Kevin Ushey [aut, cre], JJ Allaire [aut], Hadley Wickham [aut], Gary Ritchie [aut], RStudio [cph]",
"Repository": "RSPM"
},
"rversions": {
"Package": "rversions",
"Version": "2.1.2",
"Source": "Repository",
"Title": "Query 'R' Versions, Including 'r-release' and 'r-oldrel'",
"Authors@R": "c(person(given = \"Gábor\", family = \"Csárdi\", role = c(\"aut\", \"cre\"), email = \"csardi.gabor@gmail.com\"), person(given = \"Jeroen\", family = \"Ooms\", role = \"ctb\", email = \"jeroen.ooms@stat.ucla.edu\"), person(given = \"R Consortium\", role = \"fnd\"))",
"Description": "Query the main 'R' 'SVN' repository to find the versions 'r-release' and 'r-oldrel' refer to, and also all previous 'R' versions and their release dates.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-hub/rversions, https://r-hub.github.io/rversions/",
"BugReports": "https://github.com/r-hub/rversions/issues",
"Imports": [
"curl",
"utils",
"xml2 (>= 1.0.0)"
],
"Suggests": [
"covr",
"mockery",
"testthat"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Jeroen Ooms [ctb], R Consortium [fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"sass": {
"Package": "sass",
"Version": "0.4.10",
"Source": "Repository",
"Type": "Package",
"Title": "Syntactically Awesome Style Sheets ('Sass')",
"Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this, R developers can use variables, inheritance, and functions to generate dynamic style sheets. The package uses the 'Sass CSS' extension language, which is stable, powerful, and CSS compatible.",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"), person(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"), comment = c(ORCID = \"0000-0003-4474-2498\")), person(family = \"RStudio\", role = c(\"cph\", \"fnd\")), person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"), comment = \"json.cpp\"), person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"), comment = \"utf8.h\") )",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/sass/, https://github.com/rstudio/sass",
"BugReports": "https://github.com/rstudio/sass/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "GNU make",
"Imports": [
"fs (>= 1.2.4)",
"rlang (>= 0.4.10)",
"htmltools (>= 0.5.1)",
"R6",
"rappdirs"
],
"Suggests": [
"testthat",
"knitr",
"rmarkdown",
"withr",
"shiny",
"curl"
],
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut], Timothy Mastny [aut], Richard Iannone [aut] (<https://orcid.org/0000-0003-3925-190X>), Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>), Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>), RStudio [cph, fnd], Sass Open Source Foundation [ctb, cph] (LibSass library), Greter Marcel [ctb, cph] (LibSass library), Mifsud Michael [ctb, cph] (LibSass library), Hampton Catlin [ctb, cph] (LibSass library), Natalie Weizenbaum [ctb, cph] (LibSass library), Chris Eppstein [ctb, cph] (LibSass library), Adams Joseph [ctb, cph] (json.cpp), Trifunovic Nemanja [ctb, cph] (utf8.h)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN"
},
"sessioninfo": {
"Package": "sessioninfo",
"Version": "1.2.3",
"Source": "Repository",
"Title": "R Session Information",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"cre\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Robert\", \"Flight\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"R Core team\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Description": "Query and print information about the current R session. It is similar to 'utils::sessionInfo()', but includes more information about packages, and where they were installed from.",
"License": "GPL-2",
"URL": "https://github.com/r-lib/sessioninfo#readme, https://sessioninfo.r-lib.org",
"BugReports": "https://github.com/r-lib/sessioninfo/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"cli (>= 3.1.0)",
"tools",
"utils"
],
"Suggests": [
"callr",
"covr",
"gh",
"reticulate",
"rmarkdown",
"testthat (>= 3.2.0)",
"withr"
],
"Config/Needs/website": "pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [cre], Hadley Wickham [aut], Winston Chang [aut], Robert Flight [aut], Kirill Müller [aut], Jim Hester [aut], R Core team [ctb], Posit Software, PBC [cph, fnd]",
"Repository": "RSPM"
},
"shiny": {
"Package": "shiny",
"Version": "1.10.0",
"Source": "Repository",
"Type": "Package",
"Title": "Web Application Framework for R",
"Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"), person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(family = \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )",
"Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.",
"License": "GPL-3 | file LICENSE",
"Depends": [
"R (>= 3.0.2)",
"methods"
],
"Imports": [
"utils",
"grDevices",
"httpuv (>= 1.5.2)",
"mime (>= 0.3)",
"jsonlite (>= 0.9.16)",
"xtable",
"fontawesome (>= 0.4.0)",
"htmltools (>= 0.5.4)",
"R6 (>= 2.0)",
"sourcetools",
"later (>= 1.0.0)",
"promises (>= 1.3.2)",
"tools",
"crayon",
"rlang (>= 0.4.10)",
"fastmap (>= 1.1.1)",
"withr",
"commonmark (>= 1.7)",
"glue (>= 1.3.2)",
"bslib (>= 0.6.0)",
"cachem (>= 1.1.0)",
"lifecycle (>= 0.2.0)"
],
"Suggests": [
"coro (>= 1.1.0)",
"datasets",
"DT",
"Cairo (>= 1.5-5)",
"testthat (>= 3.0.0)",
"knitr (>= 1.6)",
"markdown",
"rmarkdown",
"ggplot2",
"reactlog (>= 1.0.0)",
"magrittr",
"yaml",
"future",
"dygraphs",
"ragg",
"showtext",
"sass"
],
"URL": "https://shiny.posit.co/, https://github.com/rstudio/shiny",
"BugReports": "https://github.com/rstudio/shiny/issues",
"Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"RdMacros": "lifecycle",
"Config/testthat/edition": "3",
"Config/Needs/check": "shinytest2",
"NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre] (<https://orcid.org/0000-0002-1576-2126>), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut] (<https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), John Fraser [ctb, cph] (showdown.js library), John Gruber [ctb, cph] (showdown.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "RSPM"
},
"sourcetools": {
"Package": "sourcetools",
"Version": "0.1.7-1",
"Source": "Repository",
"Type": "Package",
"Title": "Tools for Reading, Tokenizing and Parsing R Code",
"Author": "Kevin Ushey",
"Maintainer": "Kevin Ushey <kevinushey@gmail.com>",
"Description": "Tools for the reading and tokenization of R code. The 'sourcetools' package provides both an R and C++ interface for the tokenization of R code, and helpers for interacting with the tokenized representation of R code.",
"License": "MIT + file LICENSE",
"Depends": [
"R (>= 3.0.2)"
],
"Suggests": [
"testthat"
],
"RoxygenNote": "5.0.1",
"BugReports": "https://github.com/kevinushey/sourcetools/issues",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Repository": "RSPM"
},
"stringi": {
"Package": "stringi",
"Version": "1.8.7",
"Source": "Repository",
"Date": "2025-03-27",
"Title": "Fast and Portable Character String Processing Facilities",
"Description": "A collection of character string/text/natural language processing tools for pattern searching (e.g., with 'Java'-like regular expressions or the 'Unicode' collation algorithm), random string generation, case mapping, string transliteration, concatenation, sorting, padding, wrapping, Unicode normalisation, date-time formatting and parsing, and many more. They are fast, consistent, convenient, and - thanks to 'ICU' (International Components for Unicode) - portable across all locales and platforms. Documentation about 'stringi' is provided via its website at <https://stringi.gagolewski.com/> and the paper by Gagolewski (2022, <doi:10.18637/jss.v103.i02>).",
"URL": "https://stringi.gagolewski.com/, https://github.com/gagolews/stringi, https://icu.unicode.org/",
"BugReports": "https://github.com/gagolews/stringi/issues",
"SystemRequirements": "ICU4C (>= 61, optional)",
"Type": "Package",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"tools",
"utils",
"stats"
],
"Biarch": "TRUE",
"License": "file LICENSE",
"Authors@R": "c(person(given = \"Marek\", family = \"Gagolewski\", role = c(\"aut\", \"cre\", \"cph\"), email = \"marek@gagolewski.com\", comment = c(ORCID = \"0000-0003-0637-6028\")), person(given = \"Bartek\", family = \"Tartanus\", role = \"ctb\"), person(\"Unicode, Inc. and others\", role=\"ctb\", comment = \"ICU4C source code, Unicode Character Database\") )",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Marek Gagolewski [aut, cre, cph] (<https://orcid.org/0000-0003-0637-6028>), Bartek Tartanus [ctb], Unicode, Inc. and others [ctb] (ICU4C source code, Unicode Character Database)",
"Maintainer": "Marek Gagolewski <marek@gagolewski.com>",
"License_is_FOSS": "yes",
"Repository": "RSPM"
},
"stringr": {
"Package": "stringr",
"Version": "1.5.1",
"Source": "Repository",
"Title": "Simple, Consistent Wrappers for Common String Operations",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A consistent, simple and easy to use set of wrappers around the fantastic 'stringi' package. All function and argument names (and positions) are consistent, all functions deal with \"NA\"'s and zero length vectors in the same way, and the output from one function is easy to feed into the input of another.",
"License": "MIT + file LICENSE",
"URL": "https://stringr.tidyverse.org, https://github.com/tidyverse/stringr",
"BugReports": "https://github.com/tidyverse/stringr/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli",
"glue (>= 1.6.1)",
"lifecycle (>= 1.0.3)",
"magrittr",
"rlang (>= 1.0.0)",
"stringi (>= 1.5.3)",
"vctrs (>= 0.4.0)"
],
"Suggests": [
"covr",
"dplyr",
"gt",
"htmltools",
"htmlwidgets",
"knitr",
"rmarkdown",
"testthat (>= 3.0.0)",
"tibble"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre, cph], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"sys": {
"Package": "sys",
"Version": "3.4.3",
"Source": "Repository",
"Type": "Package",
"Title": "Powerful and Reliable Tools for Running System Commands in R",
"Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"ctb\"))",
"Description": "Drop-in replacements for the base system2() function with fine control and consistent behavior across platforms. Supports clean interruption, timeout, background tasks, and streaming STDIN / STDOUT / STDERR over binary or text connections. Arguments on Windows automatically get encoded and quoted to work on different locales.",
"License": "MIT + file LICENSE",
"URL": "https://jeroen.r-universe.dev/sys",
"BugReports": "https://github.com/jeroen/sys/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Suggests": [
"unix (>= 1.4)",
"spelling",
"testthat"
],
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Gábor Csárdi [ctb]",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"systemfonts": {
"Package": "systemfonts",
"Version": "1.2.3",
"Source": "Repository",
"Type": "Package",
"Title": "System Native Font Finding",
"Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Jeroen\", \"Ooms\", , \"jeroen@berkeley.edu\", role = \"aut\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Devon\", \"Govett\", role = \"aut\", comment = \"Author of font-manager\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides system native access to the font catalogue. As font handling varies between systems it is difficult to correctly locate installed fonts across different operating systems. The 'systemfonts' package provides bindings to the native libraries on Windows, macOS and Linux for finding font files that can then be used further by e.g. graphic devices. The main use is intended to be from compiled code but 'systemfonts' also provides access from R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/systemfonts, https://systemfonts.r-lib.org",
"BugReports": "https://github.com/r-lib/systemfonts/issues",
"Depends": [
"R (>= 3.2.0)"
],
"Imports": [
"base64enc",
"grid",
"jsonlite",
"lifecycle",
"tools",
"utils"
],
"Suggests": [
"covr",
"farver",
"graphics",
"knitr",
"rmarkdown",
"testthat (>= 2.1.0)"
],
"LinkingTo": [
"cpp11 (>= 0.2.1)"
],
"VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/usethis/last-upkeep": "2025-04-23",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "fontconfig, freetype2",
"NeedsCompilation": "yes",
"Author": "Thomas Lin Pedersen [aut, cre] (ORCID: <https://orcid.org/0000-0002-5147-4711>), Jeroen Ooms [aut] (ORCID: <https://orcid.org/0000-0002-4035-0289>), Devon Govett [aut] (Author of font-manager), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Thomas Lin Pedersen <thomas.pedersen@posit.co>",
"Repository": "RSPM"
},
"terra": {
"Package": "terra",
"Version": "1.8-54",
"Source": "Repository",
"Type": "Package",
"Title": "Spatial Data Analysis",
"Date": "2025-06-01",
"Depends": [
"R (>= 3.5.0)"
],
"Suggests": [
"parallel",
"tinytest",
"ncdf4",
"sf (>= 0.9-8)",
"deldir",
"XML",
"leaflet (>= 2.2.1)",
"htmlwidgets"
],
"LinkingTo": [
"Rcpp"
],
"Imports": [
"methods",
"Rcpp (>= 1.0-10)"
],
"SystemRequirements": "C++17, GDAL (>= 2.2.3), GEOS (>= 3.4.0), PROJ (>= 4.9.3), TBB, sqlite3",
"Encoding": "UTF-8",
"Language": "en-US",
"Maintainer": "Robert J. Hijmans <r.hijmans@gmail.com>",
"Description": "Methods for spatial data analysis with vector (points, lines, polygons) and raster (grid) data. Methods for vector data include geometric operations such as intersect and buffer. Raster methods include local, focal, global, zonal and geometric operations. The predict and interpolate methods facilitate the use of regression type (interpolation, machine learning) models for spatial prediction, including with satellite remote sensing data. Processing of very large files is supported. See the manual and tutorials on <https://rspatial.org/> to get started. 'terra' replaces the 'raster' package ('terra' can do more, and it is faster and easier to use).",
"License": "GPL (>= 3)",
"URL": "https://rspatial.org/, https://rspatial.github.io/terra/",
"BugReports": "https://github.com/rspatial/terra/issues/",
"LazyLoad": "yes",
"Authors@R": "c( person(\"Robert J.\", \"Hijmans\", role=c(\"cre\", \"aut\"), email=\"r.hijmans@gmail.com\", comment=c(ORCID=\"0000-0001-5872-2872\")),\t\t\t person(\"Márcia\", \"Barbosa\", role=\"ctb\"), person(\"Roger\", \"Bivand\", role=\"ctb\", comment=c(ORCID=\"0000-0003-2392-6140\")), person(\"Andrew\", \"Brown\", role=\"ctb\"), person(\"Michael\", \"Chirico\", role=\"ctb\"), person(\"Emanuele\", \"Cordano\", role=\"ctb\",comment=c(ORCID=\"0000-0002-3508-5898\")), person(\"Krzysztof\", \"Dyba\", role=\"ctb\", comment=c(ORCID=\"0000-0002-8614-3816\")), person(\"Edzer\", \"Pebesma\", role=\"ctb\", comment=c(ORCID=\"0000-0001-8049-7069\")), person(\"Barry\", \"Rowlingson\", role=\"ctb\"), person(\"Michael D.\", \"Sumner\", role=\"ctb\"))",
"NeedsCompilation": "yes",
"Author": "Robert J. Hijmans [cre, aut] (ORCID: <https://orcid.org/0000-0001-5872-2872>), Márcia Barbosa [ctb], Roger Bivand [ctb] (ORCID: <https://orcid.org/0000-0003-2392-6140>), Andrew Brown [ctb], Michael Chirico [ctb], Emanuele Cordano [ctb] (ORCID: <https://orcid.org/0000-0002-3508-5898>), Krzysztof Dyba [ctb] (ORCID: <https://orcid.org/0000-0002-8614-3816>), Edzer Pebesma [ctb] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Barry Rowlingson [ctb], Michael D. Sumner [ctb]",
"Repository": "CRAN"
},
"testthat": {
"Package": "testthat",
"Version": "3.2.3",
"Source": "Repository",
"Title": "Unit Testing for R",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Implementation of utils::recover()\") )",
"Description": "Software testing is important, but, in part because it is frustrating and boring, many of us avoid it. 'testthat' is a testing framework for R that is easy to learn and use, and integrates with your existing 'workflow'.",
"License": "MIT + file LICENSE",
"URL": "https://testthat.r-lib.org, https://github.com/r-lib/testthat",
"BugReports": "https://github.com/r-lib/testthat/issues",
"Depends": [
"R (>= 3.6.0)"
],
"Imports": [
"brio (>= 1.1.3)",
"callr (>= 3.7.3)",
"cli (>= 3.6.1)",
"desc (>= 1.4.2)",
"digest (>= 0.6.33)",
"evaluate (>= 1.0.1)",
"jsonlite (>= 1.8.7)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 2.0.3)",
"methods",
"pkgload (>= 1.3.2.1)",
"praise (>= 1.0.0)",
"processx (>= 3.8.2)",
"ps (>= 1.7.5)",
"R6 (>= 2.5.1)",
"rlang (>= 1.1.1)",
"utils",
"waldo (>= 0.6.0)",
"withr (>= 3.0.2)"
],
"Suggests": [
"covr",
"curl (>= 0.9.5)",
"diffviewer (>= 0.1.0)",
"knitr",
"rmarkdown",
"rstudioapi",
"S7",
"shiny",
"usethis",
"vctrs (>= 0.1.0)",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "watcher, parallel*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Implementation of utils::recover())",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"textshaping": {
"Package": "textshaping",
"Version": "1.0.1",
"Source": "Repository",
"Title": "Bindings to the 'HarfBuzz' and 'Fribidi' Libraries for Text Shaping",
"Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides access to the text shaping functionality in the 'HarfBuzz' library and the bidirectional algorithm in the 'Fribidi' library. 'textshaping' is a low-level utility package mainly for graphic devices that expands upon the font tool-set provided by the 'systemfonts' package.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/textshaping",
"BugReports": "https://github.com/r-lib/textshaping/issues",
"Depends": [
"R (>= 3.2.0)"
],
"Imports": [
"lifecycle",
"stats",
"stringi",
"systemfonts (>= 1.1.0)",
"utils"
],
"Suggests": [
"covr",
"grDevices",
"grid",
"knitr",
"rmarkdown",
"testthat (>= 3.0.0)"
],
"LinkingTo": [
"cpp11 (>= 0.2.1)",
"systemfonts (>= 1.0.0)"
],
"VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-04-23",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"SystemRequirements": "freetype2, harfbuzz, fribidi",
"NeedsCompilation": "yes",
"Author": "Thomas Lin Pedersen [cre, aut] (ORCID: <https://orcid.org/0000-0002-5147-4711>), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Thomas Lin Pedersen <thomas.pedersen@posit.co>",
"Repository": "RSPM"
},
"tibble": {
"Package": "tibble",
"Version": "3.3.0",
"Source": "Repository",
"Title": "Simple Data Frames",
"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\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.",
"License": "MIT + file LICENSE",
"URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble",
"BugReports": "https://github.com/tidyverse/tibble/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Imports": [
"cli",
"lifecycle (>= 1.0.0)",
"magrittr",
"methods",
"pillar (>= 1.8.1)",
"pkgconfig",
"rlang (>= 1.0.2)",
"utils",
"vctrs (>= 0.5.0)"
],
"Suggests": [
"bench",
"bit64",
"blob",
"brio",
"callr",
"DiagrammeR",
"dplyr",
"evaluate",
"formattable",
"ggplot2",
"here",
"hms",
"htmltools",
"knitr",
"lubridate",
"nycflights13",
"pkgload",
"purrr",
"rmarkdown",
"stringi",
"testthat (>= 3.0.2)",
"tidyr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/autostyle/rmd": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "RSPM"
},
"tinytex": {
"Package": "tinytex",
"Version": "0.57",
"Source": "Repository",
"Type": "Package",
"Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents",
"Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Ethan\", \"Heinzen\", role = \"ctb\"), person(\"Fernando\", \"Cagua\", role = \"ctb\"), person() )",
"Description": "Helper functions to install and maintain the 'LaTeX' distribution named 'TinyTeX' (<https://yihui.org/tinytex/>), a lightweight, cross-platform, portable, and easy-to-maintain version of 'TeX Live'. This package also contains helper functions to compile 'LaTeX' documents, and install missing 'LaTeX' packages automatically.",
"Imports": [
"xfun (>= 0.48)"
],
"Suggests": [
"testit",
"rstudioapi"
],
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/tinytex",
"BugReports": "https://github.com/rstudio/tinytex/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Yihui Xie [aut, cre, cph] (<https://orcid.org/0000-0003-0645-5666>), Posit Software, PBC [cph, fnd], Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>), Devon Ryan [ctb] (<https://orcid.org/0000-0002-8549-0971>), Ethan Heinzen [ctb], Fernando Cagua [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM"
},
"urlchecker": {
"Package": "urlchecker",
"Version": "1.0.1",
"Source": "Repository",
"Title": "Run CRAN URL Checks from Older R Versions",
"Authors@R": "c( person(\"R Core team\", role = \"aut\", comment = \"The code in urltools.R adapted from the tools package\"), person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provide the URL checking tools available in R 4.1+ as a package for earlier versions of R. Also uses concurrent requests so can be much faster than the serial versions.",
"License": "GPL-3",
"URL": "https://github.com/r-lib/urlchecker",
"BugReports": "https://github.com/r-lib/urlchecker/issues",
"Depends": [
"R (>= 3.3)"
],
"Imports": [
"cli",
"curl",
"tools",
"xml2"
],
"Suggests": [
"covr"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "no",
"Author": "R Core team [aut] (The code in urltools.R adapted from the tools package), Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Gábor Csárdi [aut, cre], RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"usethis": {
"Package": "usethis",
"Version": "3.1.0",
"Source": "Repository",
"Title": "Automate Package and Project Setup",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Malcolm\", \"Barrett\", , \"malcolmbarrett@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Andy\", \"Teucher\", , \"andy.teucher@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7840-692X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Automate package and project setup tasks that are otherwise performed manually. This includes setting up unit testing, test coverage, continuous integration, Git, 'GitHub', licenses, 'Rcpp', 'RStudio' projects, and more.",
"License": "MIT + file LICENSE",
"URL": "https://usethis.r-lib.org, https://github.com/r-lib/usethis",
"BugReports": "https://github.com/r-lib/usethis/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli (>= 3.0.1)",
"clipr (>= 0.3.0)",
"crayon",
"curl (>= 2.7)",
"desc (>= 1.4.2)",
"fs (>= 1.3.0)",
"gert (>= 1.4.1)",
"gh (>= 1.2.1)",
"glue (>= 1.3.0)",
"jsonlite",
"lifecycle (>= 1.0.0)",
"purrr",
"rappdirs",
"rlang (>= 1.1.0)",
"rprojroot (>= 1.2)",
"rstudioapi",
"stats",
"tools",
"utils",
"whisker",
"withr (>= 2.3.0)",
"yaml"
],
"Suggests": [
"covr",
"knitr",
"magick",
"pkgload (>= 1.3.2.1)",
"rmarkdown",
"roxygen2 (>= 7.1.2)",
"spelling (>= 1.2)",
"styler (>= 1.2.0)",
"testthat (>= 3.1.8)"
],
"Config/Needs/website": "r-lib/asciicast, tidyverse/tidytemplate, xml2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "TRUE",
"Config/testthat/start-first": "github-actions, release",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), Malcolm Barrett [aut] (<https://orcid.org/0000-0003-0299-5825>), Andy Teucher [aut] (<https://orcid.org/0000-0002-7840-692X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "RSPM"
},
"utf8": {
"Package": "utf8",
"Version": "1.2.6",
"Source": "Repository",
"Title": "Unicode Text Processing",
"Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))",
"Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.",
"License": "Apache License (== 2.0) | file LICENSE",
"URL": "https://krlmlr.github.io/utf8/, https://github.com/krlmlr/utf8",
"BugReports": "https://github.com/krlmlr/utf8/issues",
"Depends": [
"R (>= 2.10)"
],
"Suggests": [
"cli",
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr, rmarkdown",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"NeedsCompilation": "yes",
"Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Unicode, Inc. [cph, dtc] (Unicode Character Database)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "RSPM"
},
"vctrs": {
"Package": "vctrs",
"Version": "0.6.5",
"Source": "Repository",
"Title": "Vector Helpers",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-stability useful for analysing function interfaces.",
"License": "MIT + file LICENSE",
"URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs",
"BugReports": "https://github.com/r-lib/vctrs/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli (>= 3.4.0)",
"glue",
"lifecycle (>= 1.0.3)",
"rlang (>= 1.1.0)"
],
"Suggests": [
"bit64",
"covr",
"crayon",
"dplyr (>= 0.8.5)",
"generics",
"knitr",
"pillar (>= 1.4.4)",
"pkgdown (>= 2.0.1)",
"rmarkdown",
"testthat (>= 3.0.0)",
"tibble (>= 3.1.3)",
"waldo (>= 0.2.0)",
"withr",
"xml2",
"zeallot"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-GB",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "RSPM"
},
"waldo": {
"Package": "waldo",
"Version": "0.6.1",
"Source": "Repository",
"Title": "Find Differences Between R Objects",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Compare complex R objects and reveal the key differences. Designed particularly for use in testing packages where being able to quickly isolate key differences makes understanding test failures much easier.",
"License": "MIT + file LICENSE",
"URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo",
"BugReports": "https://github.com/r-lib/waldo/issues",
"Depends": [
"R (>= 4.0)"
],
"Imports": [
"cli",
"diffobj (>= 0.3.4)",
"glue",
"methods",
"rlang (>= 1.1.0)"
],
"Suggests": [
"bit64",
"R6",
"S7",
"testthat (>= 3.0.0)",
"withr",
"xml2"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "RSPM"
},
"whisker": {
"Package": "whisker",
"Version": "0.4.1",
"Source": "Repository",
"Maintainer": "Edwin de Jonge <edwindjonge@gmail.com>",
"License": "GPL-3",
"Title": "{{mustache}} for R, Logicless Templating",
"Type": "Package",
"LazyLoad": "yes",
"Author": "Edwin de Jonge",
"Description": "Implements 'Mustache' logicless templating.",
"URL": "https://github.com/edwindj/whisker",
"Suggests": [
"markdown"
],
"RoxygenNote": "6.1.1",
"NeedsCompilation": "no",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"withr": {
"Package": "withr",
"Version": "3.0.2",
"Source": "Repository",
"Title": "Run Code 'With' Temporarily Modified Global State",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A set of functions to run code 'with' safely and temporarily modified global state. Many of these functions were originally a part of the 'devtools' package, this provides a simple package with limited dependencies to provide access to these functions.",
"License": "MIT + file LICENSE",
"URL": "https://withr.r-lib.org, https://github.com/r-lib/withr#readme",
"BugReports": "https://github.com/r-lib/withr/issues",
"Depends": [
"R (>= 3.6.0)"
],
"Imports": [
"graphics",
"grDevices"
],
"Suggests": [
"callr",
"DBI",
"knitr",
"methods",
"rlang",
"rmarkdown (>= 2.12)",
"RSQLite",
"testthat (>= 3.0.0)"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Collate": "'aaa.R' 'collate.R' 'connection.R' 'db.R' 'defer-exit.R' 'standalone-defer.R' 'defer.R' 'devices.R' 'local_.R' 'with_.R' 'dir.R' 'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R' 'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R' 'seed.R' 'wrap.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R' 'utils.R' 'with.R'",
"NeedsCompilation": "no",
"Author": "Jim Hester [aut], Lionel Henry [aut, cre], Kirill Müller [aut], Kevin Ushey [aut], Hadley Wickham [aut], Winston Chang [aut], Jennifer Bryan [ctb], Richard Cotton [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "RSPM"
},
"xfun": {
"Package": "xfun",
"Version": "0.52",
"Source": "Repository",
"Type": "Package",
"Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'",
"Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )",
"Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.",
"Depends": [
"R (>= 3.2.0)"
],
"Imports": [
"grDevices",
"stats",
"tools"
],
"Suggests": [
"testit",
"parallel",
"codetools",
"methods",
"rstudioapi",
"tinytex (>= 0.30)",
"mime",
"litedown (>= 0.4)",
"commonmark",
"knitr (>= 1.50)",
"remotes",
"pak",
"curl",
"xml2",
"jsonlite",
"magick",
"yaml",
"qs"
],
"License": "MIT + file LICENSE",
"URL": "https://github.com/yihui/xfun",
"BugReports": "https://github.com/yihui/xfun/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"VignetteBuilder": "litedown",
"NeedsCompilation": "yes",
"Author": "Yihui Xie [aut, cre, cph] (<https://orcid.org/0000-0003-0645-5666>, https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (<https://orcid.org/0000-0002-5329-5987>), Christophe Dervieux [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM"
},
"xml2": {
"Package": "xml2",
"Version": "1.3.8",
"Source": "Repository",
"Title": "Parse XML",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )",
"Description": "Bindings to 'libxml2' for working with XML data using a simple, consistent interface based on 'XPath' expressions. Also supports XML schema validation; for 'XSLT' transformations see the 'xslt' package.",
"License": "MIT + file LICENSE",
"URL": "https://xml2.r-lib.org, https://r-lib.r-universe.dev/xml2",
"BugReports": "https://github.com/r-lib/xml2/issues",
"Depends": [
"R (>= 3.6.0)"
],
"Imports": [
"cli",
"methods",
"rlang (>= 1.1.0)"
],
"Suggests": [
"covr",
"curl",
"httr",
"knitr",
"magrittr",
"mockery",
"rmarkdown",
"testthat (>= 3.2.0)",
"xslt"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"SystemRequirements": "libxml2: libxml2-dev (deb), libxml2-devel (rpm)",
"Collate": "'S4.R' 'as_list.R' 'xml_parse.R' 'as_xml_document.R' 'classes.R' 'format.R' 'import-standalone-obj-type.R' 'import-standalone-purrr.R' 'import-standalone-types-check.R' 'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R' 'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R' 'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R' 'xml_node.R' 'xml_nodeset.R' 'xml_path.R' 'xml_schema.R' 'xml_serialize.R' 'xml_structure.R' 'xml_text.R' 'xml_type.R' 'xml_url.R' 'xml_write.R' 'zzz.R'",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Jeroen Ooms [aut, cre], Posit Software, PBC [cph, fnd], R Foundation [ctb] (Copy of R-project homepage cached as example)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "RSPM"
},
"xopen": {
"Package": "xopen",
"Version": "1.0.1",
"Source": "Repository",
"Title": "Open System Files, 'URLs', Anything",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Fathi\", \"Boudra\", role = \"aut\"), person(\"Rex\", \"Dieter\", role = \"aut\"), person(\"Kevin\", \"Krammer\", role = \"aut\"), person(\"Jeremy\", \"White\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Cross platform solution to open files, directories or 'URLs' with their associated programs.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/xopen#readme, https://r-lib.github.io/xopen/",
"BugReports": "https://github.com/r-lib/xopen/issues",
"Depends": [
"R (>= 3.1)"
],
"Imports": [
"processx"
],
"Suggests": [
"ps",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Fathi Boudra [aut], Rex Dieter [aut], Kevin Krammer [aut], Jeremy White [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
},
"xtable": {
"Package": "xtable",
"Version": "1.8-4",
"Source": "Repository",
"Date": "2019-04-08",
"Title": "Export Tables to LaTeX or HTML",
"Authors@R": "c(person(\"David B.\", \"Dahl\", role=\"aut\"), person(\"David\", \"Scott\", role=c(\"aut\",\"cre\"), email=\"d.scott@auckland.ac.nz\"), person(\"Charles\", \"Roosen\", role=\"aut\"), person(\"Arni\", \"Magnusson\", role=\"aut\"), person(\"Jonathan\", \"Swinton\", role=\"aut\"), person(\"Ajay\", \"Shah\", role=\"ctb\"), person(\"Arne\", \"Henningsen\", role=\"ctb\"), person(\"Benno\", \"Puetz\", role=\"ctb\"), person(\"Bernhard\", \"Pfaff\", role=\"ctb\"), person(\"Claudio\", \"Agostinelli\", role=\"ctb\"), person(\"Claudius\", \"Loehnert\", role=\"ctb\"), person(\"David\", \"Mitchell\", role=\"ctb\"), person(\"David\", \"Whiting\", role=\"ctb\"), person(\"Fernando da\", \"Rosa\", role=\"ctb\"), person(\"Guido\", \"Gay\", role=\"ctb\"), person(\"Guido\", \"Schulz\", role=\"ctb\"), person(\"Ian\", \"Fellows\", role=\"ctb\"), person(\"Jeff\", \"Laake\", role=\"ctb\"), person(\"John\", \"Walker\", role=\"ctb\"), person(\"Jun\", \"Yan\", role=\"ctb\"), person(\"Liviu\", \"Andronic\", role=\"ctb\"), person(\"Markus\", \"Loecher\", role=\"ctb\"), person(\"Martin\", \"Gubri\", role=\"ctb\"), person(\"Matthieu\", \"Stigler\", role=\"ctb\"), person(\"Robert\", \"Castelo\", role=\"ctb\"), person(\"Seth\", \"Falcon\", role=\"ctb\"), person(\"Stefan\", \"Edwards\", role=\"ctb\"), person(\"Sven\", \"Garbade\", role=\"ctb\"), person(\"Uwe\", \"Ligges\", role=\"ctb\"))",
"Maintainer": "David Scott <d.scott@auckland.ac.nz>",
"Imports": [
"stats",
"utils"
],
"Suggests": [
"knitr",
"plm",
"zoo",
"survival"
],
"VignetteBuilder": "knitr",
"Description": "Coerce data to LaTeX and HTML tables.",
"URL": "http://xtable.r-forge.r-project.org/",
"Depends": [
"R (>= 2.10.0)"
],
"License": "GPL (>= 2)",
"Repository": "RSPM",
"NeedsCompilation": "no",
"Author": "David B. Dahl [aut], David Scott [aut, cre], Charles Roosen [aut], Arni Magnusson [aut], Jonathan Swinton [aut], Ajay Shah [ctb], Arne Henningsen [ctb], Benno Puetz [ctb], Bernhard Pfaff [ctb], Claudio Agostinelli [ctb], Claudius Loehnert [ctb], David Mitchell [ctb], David Whiting [ctb], Fernando da Rosa [ctb], Guido Gay [ctb], Guido Schulz [ctb], Ian Fellows [ctb], Jeff Laake [ctb], John Walker [ctb], Jun Yan [ctb], Liviu Andronic [ctb], Markus Loecher [ctb], Martin Gubri [ctb], Matthieu Stigler [ctb], Robert Castelo [ctb], Seth Falcon [ctb], Stefan Edwards [ctb], Sven Garbade [ctb], Uwe Ligges [ctb]",
"Encoding": "UTF-8"
},
"yaml": {
"Package": "yaml",
"Version": "2.3.10",
"Source": "Repository",
"Type": "Package",
"Title": "Methods to Convert R Data to YAML and Back",
"Date": "2024-07-22",
"Suggests": [
"RUnit"
],
"Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb], Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb], Michael Quinn [ctb], Zhian N. Kamvar [ctb], Charlie Gao [ctb]",
"Maintainer": "Shawn Garbett <shawn.garbett@vumc.org>",
"License": "BSD_3_clause + file LICENSE",
"Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter (<https://pyyaml.org/wiki/LibYAML>) for R.",
"URL": "https://github.com/vubiostat/r-yaml/",
"BugReports": "https://github.com/vubiostat/r-yaml/issues",
"NeedsCompilation": "yes",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"zip": {
"Package": "zip",
"Version": "2.3.3",
"Source": "Repository",
"Title": "Cross-Platform 'zip' Compression",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kuba\", \"Podgórski\", role = \"ctb\"), person(\"Rich\", \"Geldreich\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Cross-Platform 'zip' Compression Library. A replacement for the 'zip' function, that does not require any additional external tools on any platform.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/zip, https://r-lib.github.io/zip/",
"BugReports": "https://github.com/r-lib/zip/issues",
"Suggests": [
"covr",
"pillar",
"processx",
"R6",
"testthat",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-05-07",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"NeedsCompilation": "yes",
"Author": "Gábor Csárdi [aut, cre], Kuba Podgórski [ctb], Rich Geldreich [ctb], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM"
}
}
}
Citation
@online{massicotte2025,
author = {Massicotte, Philippe},
title = {Using App(), Lapp(), and Tapp() with {SpatRaster} in {R}},
date = {2025-06-12},
url = {https://www.pmassicotte.com/posts/2025-06-12-terra-layer-funs/},
langid = {en}
}