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.
21 lines
492 B
JSON
21 lines
492 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"installed": "#4caf50",
|
|
"available": "#2196f3",
|
|
"disabled": "#ff9800",
|
|
"dependency": "#9c27b0",
|
|
"cardBorder": "#e0e0e0"
|
|
},
|
|
"spacing": {
|
|
"cardPadding": "16px",
|
|
"gridGap": "16px",
|
|
"dialogPadding": "24px"
|
|
},
|
|
"shadows": {
|
|
"packageCard": "0 2px 4px rgba(0, 0, 0, 0.08)",
|
|
"packageCardHover": "0 4px 12px rgba(0, 0, 0, 0.15)"
|
|
}
|
|
}
|