-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
45 lines (45 loc) · 982 Bytes
/
plugin.json
File metadata and controls
45 lines (45 loc) · 982 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
45
{
"id": "@sovereign/docs",
"namespace": "docs",
"name": "Docs",
"description": "Sovereign Docs",
"version": "0.1.0",
"type": "project",
"framework": "js",
"enabled": true,
"devOnly": true,
"enrollStrategy": "auto",
"entryPoints": {
"api": "routes/api/index.js",
"web": "routes/web/index.js"
},
"author": "Kasun Benthara",
"license": "AGPL-3.0",
"ui": {
"icon": { "name": "default", "sidebarHidden": false },
"palette": {
"primary": "violet-500",
"accent": "rose-500"
},
"layout": {
"sidebar": true,
"header": true
}
},
"sovereign": {
"schemaVersion": 1,
"compat": { "platform": "^0.8.0", "node": ">=20" },
"platformCapabilities": {
"database": false,
"git": false,
"fs": false
},
"userCapabilities": [
{
"key": "user:plugin.docs.feature",
"description": "Enable the Docs plugin.",
"roles": ["platform:user"]
}
]
}
}