Release Flow Tools 0.2.0
Verify / verify (push) Canceled after 0s

This commit is contained in:
2026-09-02 08:10:52 +02:00
parent 12d0ac0155
commit 57dd710275
28 changed files with 810 additions and 66 deletions
+19 -2
View File
@@ -3,7 +3,7 @@
"schemaVersion": 1,
"id": "de.add-ideas.flow-tools",
"name": "Flow Tools",
"version": "0.1.0",
"version": "0.2.0",
"description": "Transform structured data locally.",
"entry": "./",
"icon": "./favicon.svg",
@@ -16,11 +16,28 @@
},
"requirements": {
"secureContext": false,
"workers": false,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{ "mediaType": "application/json", "extensions": [".json"] },
{
"mediaType": "application/x-ndjson",
"extensions": [".ndjson", ".jsonl"]
},
{ "mediaType": "text/csv", "extensions": [".csv"] },
{ "mediaType": "application/xml", "extensions": [".xml"] }
],
"produces": [
{ "mediaType": "application/json", "extensions": [".json"] },
{ "mediaType": "text/csv", "extensions": [".csv"] },
{ "mediaType": "image/svg+xml", "extensions": [".svg"] }
]
},
"capabilities": { "required": ["workers"], "optional": [] },
"privacy": {
"processing": "local",
"fileUploads": true,