npmLicenseCompatibility
Verify license compatibility between multiple NPM packages to ensure compliance and avoid conflicts in your software projects. Input a list of package names for instant analysis.
Instructions
Check license compatibility between multiple packages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packages | Yes | List of package names to check for license compatibility |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packages": {
"description": "List of package names to check for license compatibility",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"packages"
],
"type": "object"
}