These functions return the package lists for each installation profile, allowing you to inspect what will be installed before running an installer.
Usage
artaverse_foundation()
artaverse_backend(include_ai = TRUE)
artaverse_frontend()
artaverse_dev()Details
Use these functions to preview what each install_*() function will install:
artaverse_foundation(): Minimal infrastructure (artcore, artutils)artaverse_backend(): Processing stack without UIartaverse_frontend(): UI stack without heavy processingartaverse_dev(): Development tools
See also
Other packages:
artaverse_conflicts(),
artaverse_deps(),
artaverse_packages(),
artaverse_update(),
artaverse_versions()
Examples
# Preview what will be installed
artaverse_foundation()
#> [1] "artcore" "artutils"
artaverse_backend()
#> [1] "artcore" "artutils" "artbenchmark" "artcurator"
#> [5] "artpixeltrace" "artpipelines" "artgemini" "artopenai"
#> [9] "artopensea" "artsend"
artaverse_frontend()
#> [1] "artcore" "artutils" "artauth" "artshiny" "modArtist"
#> [6] "modBrowse" "modFrames" "modGallery" "modUpload" "appPlatform"
artaverse_dev()
#> [1] "artcore" "artutils" "arthelpers"
