mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Updated functions.json files in theme_editor, ui_auth, ui_footer, ui_header, ui_home, ui_intro, ui_level2, ui_level3, ui_level4, ui_level5, ui_level6, ui_login, ui_pages, ui_permissions, user_manager, and workflow_editor packages. - Removed luaScript entries from function definitions, retaining only category and other relevant metadata. - Adjusted documentation in prisma/README.md to remove LuaScript entity reference.
85 lines
2.1 KiB
JSON
85 lines
2.1 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/json-script.schema.json",
|
|
"schemaVersion": "2.2.0",
|
|
"package": "code_editor",
|
|
"description": "Code editor functions for JSON, Lua, 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": "lua_render",
|
|
"name": "renderLuaEditor",
|
|
"exported": true,
|
|
"description": "Render Lua code editor component",
|
|
"category": "lua"
|
|
},
|
|
{
|
|
"id": "lua_validate",
|
|
"name": "validateLua",
|
|
"exported": true,
|
|
"description": "Validate Lua code syntax",
|
|
"category": "lua"
|
|
},
|
|
{
|
|
"id": "lua_run_sandbox",
|
|
"name": "runLuaSandbox",
|
|
"exported": true,
|
|
"description": "Execute Lua code in sandbox environment",
|
|
"category": "lua"
|
|
},
|
|
{
|
|
"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",
|
|
"renderLuaEditor",
|
|
"validateLua",
|
|
"runLuaSandbox",
|
|
"renderThemeEditor",
|
|
"renderColorPicker",
|
|
"renderModeToggle"
|
|
]
|
|
}
|
|
}
|