Files
metabuilder/packages/dbal_demo/package.json
johndoe6345789 ef709d47c0 refactor: update testing framework and restructure test configurations
- Changed devDependencies from "lua_test" to "testing" in package.json for ui_level4, ui_level5, ui_level6, ui_login, ui_pages, ui_permissions, user_manager, and workflow_editor.
- Removed legacy test scripts and parameterized tests, replacing them with a unified test suite structure in the tests section of package.json.
- Introduced new metadata.params.json files for each package to define test parameters for package ID validation, icon file existence, and JSON schema validation.
- Created new metadata.test.json files for each package to define structured test cases for validating package metadata, including checks for package ID, icon file existence, and schema validity.
2026-01-02 21:25:45 +00:00

55 lines
1.0 KiB
JSON

{
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
"packageId": "dbal_demo",
"name": "DBAL Demo",
"version": "1.0.0",
"description": "DBAL Integration Demo - Demonstrates TypeScript DBAL client with MetaBuilder",
"author": "MetaBuilder",
"license": "MIT",
"category": "demo",
"icon": "static_content/icon.svg",
"minLevel": 3,
"primary": true,
"tags": [
"dbal",
"demo",
"kv-store",
"blob-storage",
"cache"
],
"dependencies": {},
"devDependencies": {
"testing": "*"
},
"exports": {
"components": [
"DBALDemo",
"KVStorePanel",
"BlobStoragePanel",
"CachedDataPanel"
],
"scripts": [
"init",
"kv_operations",
"blob_operations",
"cache_operations",
"connection"
]
},
"tests": {
"suites": [
"tests/metadata.test.json"
]
},
"bindings": {
"dbal": true,
"browser": false
},
"requiredHooks": [
"dbal",
"kv_store",
"blob_storage",
"cached_data"
]
}