BetterDiscordApp-v2/tests/plugins/Example/config.json

25 lines
601 B
JSON

{
"info": {
"name": "Example Plugin",
"authors": ["Jiiks"],
"version": 1.0,
"description": "Example Plugin Description"
},
"main": "index.js",
"defaultConfig": [
{
"id": "test-setting-1",
"type": "bool",
"value": false,
"text": "Bool Test Setting",
"hint": "Bool Test Setting Hint"
},
{
"id": "test-setting-2",
"type": "text",
"value": "defaultValue",
"text": "Text Test Setting",
"hint": "Text Test Setting Hint"
}
]
}