diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-01-13 13:20:11 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-01-13 13:20:11 -0500 |
commit | 37d1403755f555b9b0f2a02e10411db99bba7fe9 (patch) | |
tree | 669fa1e18a3f1881eb7f986ca58df9c5f44dae38 | |
parent | c88534f4bc0f72d108424f8227d2484083a476eb (diff) | |
parent | 7fcdc2f9353ef9abe26fe8a6b7bbd936bc4a4c47 (diff) | |
download | lite-xl-plugin-manager-37d1403755f555b9b0f2a02e10411db99bba7fe9.tar.gz lite-xl-plugin-manager-37d1403755f555b9b0f2a02e10411db99bba7fe9.zip |
Merge branch 'master' of github.com:adamharrison/lite-xl-plugin-manager
-rw-r--r-- | SPEC.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -39,10 +39,13 @@ The vast majority of plugins are `singleton` plugins. ### Metadata * `id`: The semantic id of the plugin, a string only containing `[a-z0-9\-_]`. +* `type`: An optional string that specifies the plugin type. Valid values are `"plugin"` + and `"library"`. Defaults to `"plugin"`. * `name`: The optional name of the plugin. * `version`: The plugin's semantic version. A string that can contains `[0-9\.]`. * `description`: An english-language description of the plugin. -* `mod_version`: The mod_version this plugin is compatible with. A string that can contains `[0-9\.]`. +* `mod_version`: The mod_version this plugin is compatible with. + A string that can contains `[0-9\.]`. If `type` is `library`, this field is optional. * `provides`: An optional array of strings that are a shorthand of functionality this plugin provides. Can be used as a dependency. * `dependencies`: Optionally a hash of dependencies required, or optional |