Files
zemion a8eb8e53b3
Verify / verify (push) Canceled after 0s
Release Data Tools 0.2.0
2026-09-02 12:50:51 +02:00

120 lines
2.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.data-tools",
"name": "Data Tools",
"version": "0.2.0",
"description": "Inspect, infer, edit, query and loss-aware convert structured data locally.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["data", "developer", "documents"],
"tags": [
"json",
"yaml",
"toml",
"xml",
"csv",
"tsv",
"ndjson",
"schema",
"convert",
"edit"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": false,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "application/json",
"extensions": [".json"],
"label": "JSON"
},
{
"mediaType": "application/yaml",
"extensions": [".yaml", ".yml"],
"label": "YAML"
},
{
"mediaType": "application/toml",
"extensions": [".toml"],
"label": "TOML"
},
{
"mediaType": "application/xml",
"extensions": [".xml"],
"label": "XML"
},
{
"mediaType": "text/csv",
"extensions": [".csv", ".tsv"],
"label": "CSV and TSV"
},
{
"mediaType": "application/x-ndjson",
"extensions": [".ndjson", ".jsonl"],
"label": "NDJSON"
}
],
"produces": [
{
"mediaType": "application/json",
"extensions": [".json"],
"label": "JSON and inferred JSON Schema"
},
{
"mediaType": "application/yaml",
"extensions": [".yaml"],
"label": "YAML"
},
{
"mediaType": "application/toml",
"extensions": [".toml"],
"label": "TOML"
},
{
"mediaType": "application/xml",
"extensions": [".xml"],
"label": "XML"
},
{
"mediaType": "text/csv",
"extensions": [".csv", ".tsv"],
"label": "CSV and TSV"
},
{
"mediaType": "application/x-ndjson",
"extensions": [".ndjson"],
"label": "NDJSON"
}
]
},
"capabilities": { "required": ["workers"], "optional": [] },
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Inputs stay in this browser; nothing is uploaded."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/data-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/data-tools"
}
]
}