ODPluginData interface
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
Parsed data from the plugin.json
file in a plugin.
Properties
details
interface ➜ api.ODPluginDetails
Additional details about this plugin.
enabled
boolean ➜ boolean
Is this plugin enabled?
events
array ➜ string[]
A list of events to register to the opendiscord.events
global before loading any plugins. This way, plugins with a higher priority are able to use events from this plugin as well!
id
string ➜ string
The id of this plugin. (Must be identical to directory name)
incompatiblePlugins
array ➜ string[]
Plugins which are incompatible with this plugin.
name
string ➜ string
The name of this plugin (shown on startup)
npmDependencies
array ➜ string[]
Npm dependencies which are required for this plugin to work.
priority
number ➜ number
The priority of this plugin. Higher priority will load before lower priority.
requiredPlugins
array ➜ string[]
Plugins which are required for this plugin to work.
startFile
string ➜ string
The location of the start file of the plugin relative to the rootDir of the plugin
version
string ➜ string
The version of this plugin.