mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- Added `jsonScript` property to metadata schema for JSON script entry points. - Refactored `generate-package.ts` to replace Lua scripts with JSON scripts for lifecycle hooks. - Updated test generation to use JSON format for metadata validation. - Modified documentation and comments to reflect the transition from Lua to JSON scripting. - Adjusted Storybook configuration and mock data to align with new JSON script structure. - Renamed relevant files and references from Lua to JSON for consistency across the project.
49 lines
1002 B
JSON
49 lines
1002 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "ui_level4",
|
|
"name": "Level 4 - Admin Panel",
|
|
"version": "1.0.0",
|
|
"description": "Admin panel for user and system management with schemas, workflows, and automated scripts",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "ui",
|
|
"minLevel": 4,
|
|
"primary": true,
|
|
"icon": "static_content/icon.svg",
|
|
"dependencies": {
|
|
"ui_permissions": "*",
|
|
"ui_header": "*",
|
|
"ui_intro": "*",
|
|
"user_manager": "*",
|
|
"admin_dialog": "*"
|
|
},
|
|
"devDependencies": {
|
|
"testing": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"Level4Header",
|
|
"Level4Layout",
|
|
"SchemasTab",
|
|
"WorkflowsTab",
|
|
"ScriptsTab",
|
|
"GodSidebar",
|
|
"GodToolbar",
|
|
"GodContent"
|
|
],
|
|
"scripts": [
|
|
"layout",
|
|
"schemas",
|
|
"workflows"
|
|
],
|
|
"pages": [
|
|
"level4"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
}
|
|
}
|