[mirror] Opinionated R package quickstart
0
fork

Configure Feed

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

at main 26 lines 799 B view raw
1Package: bootstrapper 2Title: Opinionated R Package Quickstart 3Version: 1.0.0.9000 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 usethis, 19 utils 20Suggests: 21 testthat (>= 3.0.0) 22Config/testthat/edition: 3 23Encoding: UTF-8 24Language: en-US 25Roxygen: list(markdown = TRUE) 26RoxygenNote: 7.3.3