mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +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.
49 lines
969 B
JSON
49 lines
969 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "github_tools",
|
|
"name": "GitHub Tools",
|
|
"version": "1.0.0",
|
|
"description": "GitHub integration tools including Actions viewer, run analysis, and workflow management",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "development",
|
|
"icon": "static_content/icon.svg",
|
|
"minLevel": 2,
|
|
"primary": true,
|
|
"tags": [
|
|
"github",
|
|
"ci-cd",
|
|
"workflow",
|
|
"actions"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"lua_test": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"GitHubViewer",
|
|
"RunList",
|
|
"RunDetails",
|
|
"AnalysisPanel",
|
|
"RunFilters"
|
|
],
|
|
"scripts": [
|
|
"fetch_runs",
|
|
"analyze",
|
|
"filter",
|
|
"status"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua"
|
|
],
|
|
"parameterized": [
|
|
{
|
|
"parameters": "tests/metadata.cases.json"
|
|
}
|
|
]
|
|
}
|
|
}
|