check_outdated
Check for outdated npm packages in a project's package.json. Analyzes dependencies to show available newer versions, with configurable options for dev dependencies and output format (detailed, summary, raw). Requires npm installed.
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 |
|---|---|---|---|
| projectPath | No | Path to the directory containing package.json. Defaults to the first allowed directory if not specified. | |
| 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 |