get_package_info
Retrieve detailed information about Dart and Flutter packages from pub.dev, including version, dependencies, and documentation, using a specific package name.
Instructions
Get detailed information about a Dart/Flutter package from pub.dev
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packageName | Yes | Name of the package to retrieve information for |
Input Schema (JSON Schema)
{
"properties": {
"packageName": {
"description": "Name of the package to retrieve information for",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}