-
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.3 KB
/
Copy pathplugin.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "serverkit-git",
"display_name": "Git Server",
"version": "1.1.0",
"description": "Self-hosted Git server (Gitea) exposed through the ServerKit extension system.",
"author": "ServerKit",
"license": "MIT",
"category": "deployment",
"homepage": "https://github.com/jhd3197/serverkit-git",
"permissions": [
"docker",
"filesystem",
"shell"
],
"contributions": {
"nav": [
{
"id": "git",
"label": "Git",
"route": "/git",
"category": "infrastructure",
"icon": "<circle cx=\"18\" cy=\"18\" r=\"3\"/><circle cx=\"6\" cy=\"6\" r=\"3\"/><path d=\"M6 21V9a9 9 0 0 0 9 9\"/>"
}
],
"routes": [
{
"path": "git",
"component": "GitExtensionPage"
},
{
"path": "git/:tab",
"component": "GitExtensionPage"
}
],
"page_titles": {
"/git": "Git Repositories"
},
"command_palette": [
{
"label": "Git",
"path": "/git",
"category": "Pages",
"keywords": "git repos deploy extension plugin"
}
]
},
"entry_point": "gitea:gitea_bp",
"url_prefix": "/api/v1/git",
"min_panel_version": "1.9.11",
"repository": "https://github.com/jhd3197/serverkit-git",
"sdk_version": "^1.4.0",
"frontend_entry": "dist/index.mjs"
}