Files
metabuilder/packages/json_script_example/seed/metadata.json
2025-12-31 13:49:44 +00:00

107 lines
2.8 KiB
JSON

{
"packageId": "json_script_example",
"name": "JSON Script Example",
"version": "1.0.0",
"description": "Comprehensive example demonstrating the full JSON script specification",
"author": "MetaBuilder",
"category": "examples",
"icon": "static_content/icon.svg",
"minLevel": 0,
"primary": false,
"dependencies": [],
"devDependencies": ["lua_test"],
"exports": {
"scripts": [
"all_expressions",
"all_statements",
"all_operators",
"control_flow",
"data_structures"
],
"types": [
"ArithmeticResult",
"ComparisonResult",
"LogicalResult",
"OperatorsDemoResult",
"ExpressionsDemoResult",
"StatementsDemoResult",
"DataStructuresResult",
"Classification",
"TestResult",
"ValidationResult"
],
"components": []
},
"tests": {
"parameterized": [
{
"logic": "tests/math.test.logic.json",
"parameters": "tests/math.test.parameters.json"
}
]
},
"permissions": {
"example.view": {
"minLevel": 0,
"description": "View examples"
}
},
"seed": {
"styles": "seed/styles.json",
"types": "seed/types.json"
},
"storybook": {
"stories": [
{
"name": "All Expressions",
"function": "all_expressions",
"args": [10, 5],
"argControls": {
"a": { "type": "number", "default": 10, "min": -100, "max": 100, "step": 1 },
"b": { "type": "number", "default": 5, "min": -100, "max": 100, "step": 1 }
}
},
{
"name": "All Statements",
"function": "all_statements",
"args": [[1, 2, 3, 4, 5]]
},
{
"name": "All Operators",
"function": "all_operators",
"args": [10, 5],
"argControls": {
"x": { "type": "number", "default": 10, "min": -100, "max": 100, "step": 1 },
"y": { "type": "number", "default": 5, "min": -100, "max": 100, "step": 1 }
}
},
{
"name": "Control Flow",
"function": "control_flow",
"args": [42],
"argControls": {
"value": { "type": "number", "default": 42, "min": -100, "max": 200, "step": 1 }
}
},
{
"name": "Data Structures",
"function": "data_structures",
"args": []
}
]
},
"runtime": {
"scripts": [
"seed/script.json",
"seed/math_utils.json",
"seed/validation.json"
],
"main": "seed/script.json",
"executor": {
"lua": "../shared/seed/scripts/runtime/script_executor.lua",
"javascript": "../shared/seed/scripts/runtime/script_executor.cjs"
},
"description": "Multiple script files with import/export support"
}
}