[mirror] Opinionated R package quickstart
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at touchstone 27 lines 810 B view raw
1Package: bootstrapper 2Title: Opinionated R Package Quickstart 3Version: 1.0.0 4Authors@R: 5 person("Visruth", "Srimath Kandali", , "public@visruth.com", role = c("aut", "cre", "cph"), 6 comment = c(ORCID = "0009-0005-9097-0688")) 7Description: Bootstrap new R packages with strongly opinionated defaults. 8 Creates the package scaffold, wires up tests, README and NEWS, 9 configures GitHub Actions and Dependabot, adds Air/Jarl setup, and 10 drop in a default AGENTS.md for building R packages. 11License: GPL (>= 3) 12URL: https://bootstrapper.visruth.com/ 13Depends: 14 R (>= 4.2.0) 15Imports: 16 fs, 17 spelling, 18 touchstone, 19 usethis, 20 utils 21Suggests: 22 testthat (>= 3.0.0) 23Config/testthat/edition: 3 24Encoding: UTF-8 25Language: en-US 26Roxygen: list(markdown = TRUE) 27RoxygenNote: 7.3.3