-
Notifications
You must be signed in to change notification settings - Fork 36
/
plugin.json
32 lines (32 loc) · 914 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
{
"id": "mattermost-ai",
"name": "Copilot",
"description": "",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-ai",
"support_url": "https://github.com/mattermost/mattermost-plugin-ai/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-ai",
"icon_path": "assets/bot_icon.png",
"min_server_version": "6.2.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "Config",
"type": "custom"
}
]
}
}