-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
50 lines (50 loc) · 1.25 KB
/
plugin.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"id": "@sovereign/splitify",
"namespace": "splitify",
"name": "Splitify",
"description": "a simple, privacy-first way to track shared expenses and personal budgets. Built on Sovereign, it helps friends, teams, and collectives manage money fairly — without giving up control of their data",
"version": "0.1.0",
"type": "module",
"framework": "react",
"enabled": false,
"enrollStrategy": "auto",
"devOnly": true,
"entryPoints": {
"web": "dist/index.js",
"api": "routes/api/index.js"
},
"author": "Sovereign Core Team",
"license": "AGPL-3.0",
"ui": {
"icon": { "name": "split" },
"palette": {
"primary": "emerald-500",
"accent": "emerald-300"
},
"layout": {
"sidebar": true,
"header": true
}
},
"sovereign": {
"schemaVersion": 1,
"compat": { "platform": "^0.7.3", "node": ">=20" },
"platformCapabilities": {
"database": true
},
"devServer": {
"web": {
"origin": "http://localhost:4003",
"entry": "/src/main.jsx",
"client": "/@vite/client"
}
},
"userCapabilities": [
{
"key": "user:plugin.splitify.feature",
"description": "Enable the plugin.",
"roles": ["platform:user"]
}
]
}
}