mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
- Added `package_system.tla` to model the schema-driven package system, including multi-source loading, validation, dependency resolution, and permission filtering. - Created `package_system.cfg` for TLC model checker configuration, defining constants and invariants for bounded model checking. - Updated `metabuilder.tla` to reflect the core specification of MetaBuilder, emphasizing the package lifecycle and related specifications.
39 lines
877 B
JSON
39 lines
877 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "theme_editor",
|
|
"name": "Theme Editor",
|
|
"version": "1.0.0",
|
|
"description": "Theme customization with color palette editor, CSS variable management, and live preview",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "tools",
|
|
"icon": "static_content/icon.svg",
|
|
"minLevel": 3,
|
|
"primary": true,
|
|
"keywords": ["theme", "colors", "styling", "css", "customization", "dark-mode"],
|
|
"dependencies": {
|
|
"ui_permissions": "*"
|
|
},
|
|
"devDependencies": {
|
|
"testing": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"ThemeEditor",
|
|
"ColorPicker",
|
|
"ThemePreview",
|
|
"CSSVariableEditor",
|
|
"FontSelector"
|
|
],
|
|
"scripts": [
|
|
"theme",
|
|
"colors"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
}
|
|
}
|