library(pkginspector)
pkg_name <- "skimr"
dir <- "~/Downloads" # this will be changed to automatically download package into a temp dir
vis_package(dir, pkg_name)

Notes

library(dplyr)
path <- file.path(dir, pkg_name)
df <- rev_fn_summary(path = path) %>% 
  select(f_args, dependents) %>% 
  arrange(desc(dependents))
DT::datatable(df)