mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Created a new package for JSON Script Example with comprehensive examples demonstrating the full JSON script specification. - Added permissions for viewing, executing, and modifying examples in the JSON Script Example package. - Implemented functions for various expressions, statements, operators, and control flow in the JSON Script Example. - Developed a Storybook configuration for showcasing JSON Script Examples with interactive components. - Established a styles token file for consistent styling across the JSON Script Example package. - Introduced a new Lua Test Framework package with components for running and displaying test results. - Defined permissions for executing and viewing Lua test results, along with configuration and debugging capabilities. - Implemented a comprehensive set of functions for the Lua testing framework, including assertions and mocks. - Created Storybook stories for the Lua Test Framework to demonstrate the test runner and results display. - Added a styles token file for the Lua Test Framework to ensure a cohesive design.
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
|
|
"packageId": "json_script_example",
|
|
"name": "JSON Script Example",
|
|
"version": "1.0.0",
|
|
"description": "Comprehensive example demonstrating the full JSON script specification",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"category": "examples",
|
|
"minLevel": 0,
|
|
"primary": false,
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"lua_test": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"ExpressionDemo",
|
|
"OperatorDemo",
|
|
"ResultDisplay"
|
|
],
|
|
"scripts": [
|
|
"all_expressions",
|
|
"all_statements",
|
|
"all_operators",
|
|
"control_flow",
|
|
"data_structures"
|
|
],
|
|
"types": [
|
|
"ArithmeticResult",
|
|
"ComparisonResult",
|
|
"LogicalResult",
|
|
"OperatorsDemoResult",
|
|
"ExpressionsDemoResult",
|
|
"StatementsDemoResult",
|
|
"DataStructuresResult",
|
|
"Classification",
|
|
"TestResult",
|
|
"ValidationResult"
|
|
]
|
|
},
|
|
"tests": {
|
|
"parameterized": [
|
|
{
|
|
"logic": "tests/math.test.logic.json",
|
|
"parameters": "tests/math.test.parameters.json"
|
|
}
|
|
]
|
|
}
|
|
}
|