{
"packages": {
// If only a version is specified, you can abbreviate as:
// "package_name": "version"
"package_name": string,
"package_name": {
// Version of the package to install. Defaults to "latest"
"version": string,
// Whether native library patching is enabled for this package.
// Defaults to `auto`, can be `always` or `never`
"patch": ["auto" | "always" | "never"],
// List of platforms to install the package on.
// Defaults to all platforms
"platforms": [string],
// List of platforms to exclude this package from.
// Defaults to no excluded platforms
"excluded_platforms": [string],
// Whether to disable a built-in plugin, if one exists.
// Defaults to false
"disable_plugin": boolean
}
}
}