-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
29 lines (21 loc) · 891 Bytes
/
plugin.json
File metadata and controls
29 lines (21 loc) · 891 Bytes
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
{
// Plugin identifiers are globally unique and only contain A-Za-z0-9_-
"id": "test",
// It is highly recommended to use Semantic Versioning
"version": "0.0.2",
// Meta data for display purposes:
"meta": {
// label: name of the plugin as displayed, should be short
"label": "Test",
// description: longer string to help end users understand what this plugin does
"description": "",
"author": "admin",
// icon: must be one of the FontAwesome 3.2.1 icons, complete list here at https://fontawesome.com/v3.2.1/icons/
"icon": "icon-puzzle-piece",
// List of tags for filtering the list of plugins
"tags": [], //for example: ["Machine Learning", "NLP"]
// URL where the user can learn more about the plugin
"url": "",
"licenseInfo": "Apache Software License"
}
}