mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Introduced `CodegenStudio`, `TemplateSelector`, and `PackageGenerator` components with detailed props and rendering logic. - Created UI styles and tokens for consistent theming across components. - Implemented permissions for template viewing, creation, and code generation. - Added functions for lifecycle events, blueprint building, and package generation. - Developed storybook stories for visual testing and documentation of components. feat(config_summary): implement configuration summary components and styles - Added `ConfigSummary`, `SummaryRow`, and related components for displaying system stats. - Defined permissions for viewing and exporting configuration summaries. - Created functions for rendering and aggregating summary data. - Established storybook stories for showcasing summary components and their variations. - Introduced styles and tokens for consistent UI presentation across summary components.
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "codegen_studio",
|
|
"name": "Codegen Studio",
|
|
"version": "1.1.0",
|
|
"description": "Generate Next.js, React, CLI starters, and MetaBuilder packages from configurable templates.",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "tools",
|
|
"minLevel": 5,
|
|
"primary": true,
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"lua_test": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"CodegenStudio",
|
|
"TemplateSelector",
|
|
"PackageGenerator"
|
|
],
|
|
"scripts": [
|
|
"init",
|
|
"blueprint",
|
|
"package_template",
|
|
"package_template.generator",
|
|
"package_template.templates",
|
|
"package_template.cli"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua",
|
|
"package_template/tests/generator.test.lua"
|
|
],
|
|
"parameterized": [
|
|
{
|
|
"parameters": "tests/metadata.cases.json"
|
|
},
|
|
{
|
|
"parameters": "tests/components.cases.json"
|
|
},
|
|
{
|
|
"parameters": "package_template/tests/generator.cases.json"
|
|
}
|
|
]
|
|
}
|
|
}
|