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 7239b083ae
commit ad18a7595e
No known key found for this signature in database

View file

@ -94,13 +94,52 @@
"dependencies": [],
"defaultOrder": 50,
"defaultEnabled": true,
"defaultOptions": {},
"defaultOptions": {
"localGraph": {
"drag": true,
"zoom": true,
"depth": 1,
"scale": 1.1,
"repelForce": 0.5,
"centerForce": 0.3,
"linkDistance": 30,
"fontSize": 0.6,
"opacityScale": 1,
"showTags": true,
"removeTags": [],
"focusOnHover": false,
"enableRadial": false
},
"globalGraph": {
"drag": true,
"zoom": true,
"depth": -1,
"scale": 0.9,
"repelForce": 0.5,
"centerForce": 0.2,
"linkDistance": 30,
"fontSize": 0.6,
"opacityScale": 1,
"showTags": true,
"removeTags": [],
"focusOnHover": true,
"enableRadial": true
}
},
"components": {
"Graph": {
"displayName": "Graph",
"defaultPosition": "right",
"defaultPriority": 10
}
},
"optionSchema": {
"localGraph": {
"type": "object"
},
"globalGraph": {
"type": "object"
}
}
},
"engines": {