Remove functions.json files and stop generating them

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-07 19:20:19 +00:00
parent 7b0dc3963d
commit 00a49e4243
54 changed files with 1 additions and 6222 deletions

View File

@@ -1,84 +0,0 @@
{
"$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"
]
}
}