check_outdated
Identify outdated npm packages in your project by analyzing package.json with 'npm outdated'. Specify the project path, include dev dependencies, and choose output format to view results.
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. |