docs: add missing defaultOptions and optionSchema to package.json manifest

This commit is contained in:
saberzero1 2026-05-22 20:06:19 +02:00
parent c3c069a70b
commit 09b45d883f
No known key found for this signature in database

View file

@ -103,11 +103,30 @@
"dependencies": [],
"defaultOrder": 50,
"defaultEnabled": true,
"defaultOptions": {},
"defaultOptions": {
"enableInteraction": true,
"initialZoom": 1,
"minZoom": 0.1,
"maxZoom": 5
},
"frames": {
"CanvasFrame": {
"exportName": "CanvasFrame"
}
},
"optionSchema": {
"enableInteraction": {
"type": "boolean"
},
"initialZoom": {
"type": "number"
},
"minZoom": {
"type": "number"
},
"maxZoom": {
"type": "number"
}
}
},
"engines": {