Represents an addon.
| Property | Type | Description | 
|---|---|---|
| platforms | ("modrinth" | "curseforge")[] | The platforms where the addon is available. | 
| modData | ModData | An object containing the mod data for each platform. | 
Represents the mod data of an addon.
| Property | Type | Description | 
|---|---|---|
| modrinth? | AddonData | The mod data for the Modrinth platform. | 
| curseforge? | AddonData | The mod data for the Curseforge platform. | 
Represents the data of an addon.
| Property | Type | Description | 
|---|---|---|
| name | string | The display name of the addon. | 
| modloaders | ("quilt" | "fabric" | "forge" | "neoforge" | "liteloader" | "modloader" | "rift" | "cauldron" | "any")[] | A list of supported modloaders for the addon. | 
| description | string | A short description of the addon. | 
| clientSide | "unknown" | "required" | "optional" | "unsupported" | Client-side support type for the addon. | 
| serverSide | "unknown" | "required" | "optional" | "unsupported" | Server-side support type for the addon. | 
| slug | string | The unique slug identifier for the addon. | 
| versions | string[] | A list of all available versions for the addon. | 
| version | string | The current version of the addon. | 
| icon | string | A URL to the addon's icon. | 
| authors | AddonAuthor[] | A list of authors for the addon. | 
| created | string | The creation date of the addon (ISO format). | 
| modified | string | The last modified date of the addon (ISO format). | 
| categories | string[] | A list of categories the addon belongs to. | 
| license | string | The license under which the addon is distributed. | 
| downloads | number | The number of times the addon has been downloaded. | 
| follows | number | The number of users following the addon. | 
| color | number | A numeric color value associated with the addon. | 
| id | string | The unique identifier for the addon. | 
Represents the data of an author of an addon.
| Property | Type | Description | 
|---|---|---|
| name | string | The name of the author. | 
| url | string | A URL to the author's profile. |