check_outdated
Identify outdated npm packages in package.json by analyzing project dependencies. Specifies newer versions available and supports detailed, summary, or raw output formats.
Instructions
Check for outdated npm packages in package.json using 'npm outdated'. Analyzes the current project's dependencies and shows which packages have newer versions available. Requires npm to be installed and accessible from the command line.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeDevDependencies | No | Whether to include dev dependencies in the check | |
outputFormat | No | Format of the output: detailed (full info), summary (counts only), or raw (npm command output) | detailed |
projectPath | No | Path to the directory containing package.json. Defaults to the first allowed directory if not specified. |