mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +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.
40 lines
912 B
JSON
40 lines
912 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "database_manager",
|
|
"name": "Database Manager",
|
|
"version": "1.0.0",
|
|
"description": "Database administration, export/import, schema visualization, and system statistics",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "tools",
|
|
"icon": "static_content/icon.svg",
|
|
"minLevel": 5,
|
|
"primary": true,
|
|
"keywords": ["database", "admin", "export", "import", "schema", "statistics"],
|
|
"dependencies": {
|
|
"data_table": "*",
|
|
"ui_permissions": "*"
|
|
},
|
|
"devDependencies": {
|
|
"testing": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"DatabaseManager",
|
|
"DatabaseStats",
|
|
"ExportImportPanel",
|
|
"SchemaVisualizer"
|
|
],
|
|
"scripts": [
|
|
"database",
|
|
"export",
|
|
"statistics"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
}
|
|
}
|