npmVersions
Retrieve all available versions of NPM packages to ensure compatibility and streamline package management decisions. Integrates with AI-driven insights for enhanced analysis.
Instructions
Get all available versions of an NPM package
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packages | Yes | List of package names to get versions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packages": {
"description": "List of package names to get versions for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"packages"
],
"type": "object"
}