install_component
Generates precise commands for installing Starwind UI components using npm, yarn, or pnpm, streamlining setup for developers.
Instructions
Generates installation commands for Starwind UI components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additionalComponents | No | Additional components to install | |
component | Yes | Component name to install | |
options | No | Additional options for installation (e.g., '--all' to install all components) | |
packageManager | No | Package manager to use (npm, yarn, pnpm) |
Input Schema (JSON Schema)
{
"properties": {
"additionalComponents": {
"description": "Additional components to install",
"items": {
"type": "string"
},
"type": "array"
},
"component": {
"description": "Component name to install",
"type": "string"
},
"options": {
"description": "Additional options for installation (e.g., '--all' to install all components)",
"items": {
"type": "string"
},
"type": "array"
},
"packageManager": {
"description": "Package manager to use (npm, yarn, pnpm)",
"enum": [
"npm",
"yarn",
"pnpm"
],
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}