Files
metabuilder/packages/route_manager/package.json
johndoe6345789 3ec49cfe8c feat: Introduce schema-driven package system specification
- 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.
2026-01-02 21:59:59 +00:00

40 lines
898 B
JSON

{
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
"packageId": "route_manager",
"name": "Route Manager",
"version": "1.0.0",
"description": "Page route configuration, URL management, access level settings, and route validation",
"author": "MetaBuilder",
"license": "MIT",
"category": "tools",
"icon": "static_content/icon.svg",
"minLevel": 4,
"primary": true,
"keywords": ["routes", "pages", "navigation", "urls", "access-control"],
"dependencies": {
"data_table": "*",
"ui_permissions": "*"
},
"devDependencies": {
"testing": "*"
},
"exports": {
"components": [
"RouteManager",
"RouteEditor",
"RouteList",
"AccessControlSettings",
"RoutePreview"
],
"scripts": [
"routes",
"validation"
]
},
"tests": {
"suites": [
"tests/metadata.test.json"
]
}
}