-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
43 lines (43 loc) · 976 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "./node_modules/midi-mixer-plugin/plugin.schema.json",
"version": "1.0.3",
"id": "ca.jaggernaut.midi-mixer.twitch",
"name": "Twitch",
"type": "node",
"main": "lib/index.js",
"icon": "TwitchGlitchPurple.svg",
"settings": {
"ClientID": {
"label": "Client ID",
"type": "password",
"fallback": "None",
"required": true
},
"ClientSecret": {
"label": "Client Secret",
"type": "password",
"fallback": "None",
"required": true
},
"AccessToken": {
"label": "Access Token",
"type": "password",
"fallback": "None"
},
"RefreshToken": {
"label": "Refresh Token",
"type": "password",
"fallback": "None"
},
"expressStatus": {
"label": "Express server status",
"type": "status",
"fallback": "Not Running"
},
"runLogin": {
"label": "Run Login Server",
"type": "button"
}
},
"author": "Jaggernaut"
}