Aller au contenu

plugins.json

Ce contenu n’est pas encore disponible dans votre langue.

plugins.json declares which plugins are intended for installation and the version ranges they have to satisfy. It is human-edited, concise, and designed for sharing intent across environments.

writable/plugins.json
{
"plugins": {
"acme/hello-world": "2.1.0",
"ad-aures/custom-rss": "^1.0.0",
"ad-aures/show-notes-signature": "dev-main"
},
"repositories": {}
}

A mapping of plugin identifiers to version ranges, expressing intent for what to install. Keys use the vendor/plugin naming convention; values accept semantic version ranges or development versions like dev-main.

An array of additional plugin sources to consult when resolving versions.

Not yet implemented.