Each plugin can have the following attribute credits
export interface Credits {
// The original creator of the plugin, this can never change.
author: string;
// The current developer of the plugin, changes when the author is no longer interested.
maintainer: string;
// Anyone who ever did anything to aid this plugin, add your own name if fix something here.
contributors: string[]
}
Each plugin can have the following attribute
credits