-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
60 lines (60 loc) · 1.75 KB
/
Copy pathplugin.json
File metadata and controls
60 lines (60 loc) · 1.75 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "adb-plugin-custom-commands",
"displayName": "Custom Commands",
"version": "1.2.0",
"description": "Create custom slash, text, and context menu commands with variable templates and embed responses.",
"author": "DeadIndian",
"license": "AGPL-3.0-only",
"main": "index.js",
"requiresRestart": false,
"manifestVersion": 2,
"process": {
"model": "pooled",
"maxExecutionMs": 5000,
"memoryMb": 128,
"persistentReason": null
},
"capabilities": {
"storage": ["own-collection"],
"discord": ["SendMessages", "ManageGuild", "UseApplicationCommands"],
"hooks": ["subscribe"]
},
"permissions": {
"storage": ["own-collection"],
"discord": ["SendMessages", "ManageGuild", "UseApplicationCommands"],
"hooks": ["subscribe"],
"network": { "outbound": [] },
"filesystem": { "read": [], "write": [] },
"childProcess": false,
"nativeAddons": false
},
"declaredDependencies": [],
"discordPermissions": ["SendMessages", "ManageGuild", "UseApplicationCommands"],
"engines": {
"core": ">=2.0.0",
"plugins": { "administration": ">=2.0.0" }
},
"settings": {
"commandPermissions": true,
"schema": [
{ "key": "prefix", "type": "string", "label": "Text command prefix", "default": "!" }
]
},
"dashboard": {
"permissions": [
{ "key": "view", "label": "View", "description": "See custom commands and their responses." },
{ "key": "configure", "label": "Configure", "description": "Change the text command prefix and plugin settings." },
{ "key": "manage-commands", "label": "Manage commands", "description": "Create, edit, and delete custom commands." }
]
},
"configSchema": {
"type": "object",
"properties": {
"prefix": {
"type": "string",
"default": "!",
"description": "Prefix for text commands"
}
}
}
}