-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
44 lines (44 loc) · 959 Bytes
/
plugin.json
File metadata and controls
44 lines (44 loc) · 959 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"id": "@sovereign/tasks",
"namespace": "tasks",
"name": "Tasks",
"description": "Dead simple, offline-first task lists.",
"version": "0.3.0",
"type": "module",
"framework": "js",
"enabled": true,
"devOnly": false,
"entryPoints": {
"api": "routes/api/index.js",
"web": "routes/web/index.js"
},
"corePlugin": false,
"author": "Sovereign Community",
"license": "AGPL-3.0",
"ui": {
"icon": { "name": "tasks" },
"palette": {
"primary": "sky-600",
"accent": "sky-300"
},
"layout": {
"sidebar": true,
"header": true
}
},
"sovereign": {
"schemaVersion": 1,
"compat": { "platform": "^0.7.3", "node": ">=20" },
"platformCapabilities": {
"database": true,
"mailer": true
},
"userCapabilities": [
{
"key": "user:plugin.tasks.feature",
"description": "Access Tasks plugin.",
"roles": ["platform:user"]
}
]
}
}