{ "$schema": "https://metabuilder.dev/schemas/json-script.schema.json", "schemaVersion": "2.2.0", "package": "code_editor", "description": "Code editor functions for JSON, scripting, and theme editing", "functions": [ { "id": "json_render", "name": "renderJsonEditor", "exported": true, "description": "Render JSON editor component with options", "category": "json" }, { "id": "json_validate", "name": "validateJson", "exported": true, "description": "Validate JSON string syntax", "category": "json" }, { "id": "json_format", "name": "formatJson", "exported": true, "description": "Format JSON string with indentation", "category": "json" }, { "id": "script_render", "name": "renderScriptEditor", "exported": true, "description": "Render script editor component", "category": "script" }, { "id": "script_validate", "name": "validateScript", "exported": true, "description": "Validate script syntax", "category": "script" }, { "id": "script_run_sandbox", "name": "runScriptSandbox", "exported": true, "description": "Execute scripts in sandbox environment", "category": "script" }, { "id": "theme_render", "name": "renderThemeEditor", "exported": true, "description": "Render theme customization editor", "category": "theme" }, { "id": "theme_color_picker", "name": "renderColorPicker", "exported": true, "description": "Render color picker component", "category": "theme" }, { "id": "theme_mode_toggle", "name": "renderModeToggle", "exported": true, "description": "Render light/dark mode toggle", "category": "theme" } ], "exports": { "functions": [ "renderJsonEditor", "validateJson", "formatJson", "renderScriptEditor", "validateScript", "runScriptSandbox", "renderThemeEditor", "renderColorPicker", "renderModeToggle" ] } }