-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
122 lines (122 loc) · 3.5 KB
/
plugin.json
File metadata and controls
122 lines (122 loc) · 3.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"id": "@kasunben/papertrail",
"namespace": "papertrail",
"name": "PaperTrail",
"description": "Sovereign PaperTrail",
"version": "0.2.0",
"type": "project",
"framework": "react",
"enabled": true,
"devOnly": false,
"enrollStrategy": "auto",
"entryPoints": {
"web": "dist/index.js",
"api": "routes/api/index.js"
},
"author": "Sovereign Core Team",
"license": "AGPL-3.0",
"ui": {
"icon": { "name": "timeline" },
"palette": {
"primary": "sky-500",
"accent": "slate-600"
},
"layout": {
"sidebar": true,
"header": true
}
},
"sovereign": {
"schemaVersion": 1,
"compat": { "platform": "^0.7.3", "node": ">=20" },
"platformCapabilities": {
"database": true
},
"devServer": {
"web": {
"origin": "http://localhost:4002",
"entry": "/src/main.jsx",
"client": "/@vite/client"
}
},
"userCapabilities": [
{
"key": "user:plugin.papertrail.feature",
"description": "Enable PaperTrail plugin.",
"roles": ["platform:user"]
},
{
"key": "user:plugin.papertrail.create",
"description": "Create papertrail project, and configure.",
"roles": ["platform:user"]
},
{
"key": "user:plugin.papertrail.read",
"description": "View own papertrail project.",
"roles": [
"project:admin",
"project:editor",
"project:contributor",
"project:viewer",
"project:guest"
]
},
{
"key": "user:plugin.papertrail.update",
"description": "Update papertrail project.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.update.shared",
"description": "Update papertrail project.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.delete",
"description": "Delete papertrail project.",
"roles": ["project:admin"]
},
{
"key": "user:plugin.papertrail.post.create",
"description": "Create papertrail posts.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.post.read",
"description": "View papertrail posts.",
"roles": [
"project:admin",
"project:editor",
"project:contributor",
"project:viewer",
"project:guest"
]
},
{
"key": "user:plugin.papertrail.post.update",
"description": "Update papertrail posts.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.post.update.shared",
"description": "Update shared papertrail posts.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.post.delete",
"description": "Delete papertrail posts.",
"roles": ["project:admin", "project:editor", "project:contributor"]
},
{
"key": "user:plugin.papertrail.post.delete.shared",
"description": "Delete shared papertrail posts.",
"roles": ["project:admin", "project:editor"]
},
{
"key": "user:plugin.papertrail.post.publish",
"description": "Publish papertrail posts.",
"roles": ["platform:user", "project:admin", "project:editor"]
}
]
}
}