bun-remove
Remove packages from a project
TLDR
Remove a package
$ bun remove [package]
Remove multiple packages$ bun remove [package1] [package2]
Remove a global package$ bun remove -g [package]
SYNOPSIS
bun remove [options] packages...
DESCRIPTION
bun remove uninstalls packages from the project and removes them from package.json. This is equivalent to npm uninstall or yarn remove.
PARAMETERS
-g, --global
Remove from global packages.-d, --dev
Remove from devDependencies.
SEE ALSO
bun(1), bun-rm(1), bun-install(1)
