mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- Added `jsonScript` property to metadata schema for JSON script entry points. - Refactored `generate-package.ts` to replace Lua scripts with JSON scripts for lifecycle hooks. - Updated test generation to use JSON format for metadata validation. - Modified documentation and comments to reflect the transition from Lua to JSON scripting. - Adjusted Storybook configuration and mock data to align with new JSON script structure. - Renamed relevant files and references from Lua to JSON for consistency across the project.
42 lines
857 B
JSON
42 lines
857 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "testing",
|
|
"name": "Testing Framework",
|
|
"version": "2.0.0",
|
|
"description": "JSON-based testing framework for MetaBuilder packages with parameterized tests, mocks, and assertions",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "tools",
|
|
"minLevel": 3,
|
|
"primary": false,
|
|
"icon": "static_content/icon.svg",
|
|
"keywords": [
|
|
"testing",
|
|
"json",
|
|
"unit-test",
|
|
"framework",
|
|
"assertions",
|
|
"mocks",
|
|
"parameterized"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {},
|
|
"exports": {
|
|
"components": [
|
|
"TestRunner",
|
|
"TestResults"
|
|
],
|
|
"scripts": [
|
|
"framework",
|
|
"runner",
|
|
"assertions",
|
|
"mocks"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
}
|
|
}
|