npmVulnerabilities
Identify known vulnerabilities in npm packages to enhance security and optimize package management decisions.
Instructions
Check for known vulnerabilities in packages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packages | Yes | List of package names to check for vulnerabilities |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packages": {
"description": "List of package names to check for vulnerabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"packages"
],
"type": "object"
}