mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Added SVG icons for the following packages: - github_tools - irc_webchat - json_script_example - lua_test - media_center - nav_menu - notification_center - package_validator - quick_guide - role_editor - schema_editor - screenshot_analyzer - smtp_config - social_hub - stats_grid - stream_cast - ui_auth - ui_dialogs - 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 - workflow_editor - Updated package.json files to include icon paths for each package.
47 lines
988 B
JSON
47 lines
988 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "code_editor",
|
|
"name": "Code Editor",
|
|
"version": "1.0.0",
|
|
"description": "Code editor components for JSON, Lua, and theme editing",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "editors",
|
|
"icon": "static_content/icon.svg",
|
|
"minLevel": 5,
|
|
"primary": false,
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"lua_test": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"CodeEditor",
|
|
"JsonEditor",
|
|
"LuaEditor",
|
|
"ThemeEditor"
|
|
],
|
|
"scripts": [
|
|
"json",
|
|
"lua",
|
|
"theme"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua",
|
|
"tests/editor.test.lua",
|
|
"tests/theme.test.lua",
|
|
"tests/json.test.lua",
|
|
"tests/lua.test.lua",
|
|
"tests/init.test.lua"
|
|
],
|
|
"parameterized": [
|
|
{
|
|
"parameters": "tests/editor.cases.json"
|
|
}
|
|
]
|
|
}
|
|
}
|