mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +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.
38 lines
879 B
JSON
38 lines
879 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "dropdown_manager",
|
|
"name": "Dropdown Manager",
|
|
"version": "1.0.0",
|
|
"description": "Dynamic dropdown configuration with reusable option sets, value/label pairs, and live preview",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "managers",
|
|
"icon": "static_content/icon.svg",
|
|
"minLevel": 4,
|
|
"primary": false,
|
|
"keywords": ["dropdown", "select", "options", "configuration", "forms"],
|
|
"dependencies": {
|
|
"data_table": "*",
|
|
"ui_permissions": "*"
|
|
},
|
|
"devDependencies": {
|
|
"testing": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"DropdownManager",
|
|
"DropdownEditor",
|
|
"DropdownPreview",
|
|
"OptionsList"
|
|
],
|
|
"scripts": [
|
|
"dropdowns"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
}
|
|
}
|