66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://git.add-ideas.de/lotobo/toolbox-sdk/raw/branch/main/schemas/toolbox-app.v1.schema.json",
|
|
"schemaVersion": 1,
|
|
"id": "de.add-ideas.git-tools",
|
|
"name": "Git Tools",
|
|
"version": "0.2.0",
|
|
"description": "Inspect and author Git interchange formats locally in the browser.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["developer", "text", "productivity"],
|
|
"tags": [
|
|
"git",
|
|
"patch",
|
|
"diff",
|
|
"gitignore",
|
|
"semver",
|
|
"conventional-commits",
|
|
"changelog"
|
|
],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": false,
|
|
"workers": false,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{ "mediaType": "text/x-diff", "extensions": [".diff", ".patch"] },
|
|
{
|
|
"mediaType": "text/plain",
|
|
"extensions": [".gitignore", ".gitattributes", ".txt"]
|
|
},
|
|
{ "mediaType": "application/json", "extensions": [".json"] }
|
|
],
|
|
"produces": [
|
|
{ "mediaType": "text/x-diff", "extensions": [".patch"] },
|
|
{ "mediaType": "application/json", "extensions": [".json"] },
|
|
{ "mediaType": "application/zip", "extensions": [".zip"] }
|
|
]
|
|
},
|
|
"capabilities": { "required": [], "optional": [] },
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": false,
|
|
"telemetry": false,
|
|
"label": "Inputs stay in this browser; nothing is uploaded."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/git-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/git-tools"
|
|
}
|
|
]
|
|
}
|