pnpm list

    This command will output all the versions of packages that are installed, as well as their dependencies, in a tree-structure.

    Positional arguments are name-pattern@version-range identifiers, which will limit the results to only the packages named. For example, pnpm list "babel-*" "eslint-*" semver@5.

    Perform command on every package in subdirectories or on every workspace package, when executed inside a workspace.

    --json

    Log output in JSON format.

    --long

    Outputs package directories in a parseable format instead of their tree view.

    --global, -g

    List packages in the global install directory instead of in the current project.

    --depth <number>

    Max display depth of the dependency tree.

    will list direct dependencies only. pnpm ls --depth -1 will list projects only. Useful inside a workspace when used with the -r option.

    --dev, -D

    Display only the dependency graph for packages in devDependencies.

    --no-optional

    Don’t display packages from .

    Added in: v7.22.0

    Display only dependencies that are also projects within the workspace.

    --filter <package_selector>