-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
53 lines (53 loc) · 1.02 KB
/
plugin.json
File metadata and controls
53 lines (53 loc) · 1.02 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
{
"id": "kanban",
"name": "Kanban Board",
"version": "0.1.0",
"author": "RefMD Team",
"repository": "https://github.com/refmdio/kanban-plugin",
"abi": "refmd-plugin/v1",
"mounts": [
"/kanban/*"
],
"frontend": {
"entry": "index.mjs",
"mode": "esm"
},
"backend": {
"wasm": "backend/plugin.wasm"
},
"permissions": [
"doc.read",
"doc.write"
],
"commands": [
"kanban.create",
"kanban.create_card",
"kanban.update_card",
"kanban.move_card",
"kanban.delete_card",
"kanban.update_columns",
"kanban.create_comment",
"kanban.update_comment",
"kanban.delete_comment",
"kanban.create_activity",
"kanban.update_activity",
"kanban.delete_activity"
],
"ui": {
"toolbar": [
{
"title": "New Kanban Board",
"action": "kanban.create"
}
],
"fileTree": {
"icon": "LayoutGrid",
"identify": {
"type": "kvFlag",
"key": "meta",
"path": "isKanban",
"equals": true
}
}
}
}