bun-list
List installed packages
TLDR
List installed packages
$ bun list
List all packages including nested dependencies$ bun list --all
Output as JSON$ bun list --json
SYNOPSIS
bun list [options]
DESCRIPTION
bun list displays the packages installed in the current project. By default, it shows direct dependencies from package.json. Use --all to see the complete dependency tree.
This is similar to npm list or yarn list.
PARAMETERS
--all
Show all dependencies including nested.--json
Output in JSON format.
SEE ALSO
bun(1), bun-pm-ls(1), bun-outdated(1)
