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

25 lines
601 B
JSON
Raw Normal View History

2018-01-15 13:17:13 +01:00
{
2018-01-16 07:01:22 +01:00
"info": {
"name": "Example Plugin",
"authors": ["Jiiks"],
2018-01-20 18:48:27 +01:00
"version": 1.0,
"description": "Example Plugin Description"
2018-01-16 07:01:22 +01:00
},
"main": "index.js",
2018-01-24 11:37:28 +01:00
"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"
}
]
2018-01-15 13:17:13 +01:00
}