LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

bun-list

List installed packages

TLDR

List installed packages
$ bun list
copy
List all packages including nested dependencies
$ bun list --all
copy
Output as JSON
$ bun list --json
copy
Search for a specific package
$ bun list [package_name]
copy

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

Copied to clipboard
Kai