19 lines
417 B
Markdown
19 lines
417 B
Markdown
# Plugin Registry
|
|
|
|
Each plugin lives in its own TOML file under `plugins/`.
|
|
|
|
```toml
|
|
id = "example"
|
|
name = "Example"
|
|
repo = "owner/example"
|
|
asset_patterns = ["Example-*.zip"]
|
|
install_strategy = "bsipa-zip"
|
|
category = "ui"
|
|
dependencies = [
|
|
{ id = "bsipa", constraint = ">=4.3.7" },
|
|
]
|
|
```
|
|
|
|
Dependencies are inline arrays on the plugin that owns them, so there is no
|
|
implicit relationship with a preceding TOML table.
|