Files
metabuilder/packages/lua_test/package.json
johndoe6345789 8c8f8cce8a feat: Add JSON Script Example and Lua Test Framework
- 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.
2026-01-02 16:42:39 +00:00

46 lines
884 B
JSON

{
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.json",
"packageId": "lua_test",
"name": "Lua Test",
"version": "1.0.0",
"description": "Unit testing framework for Lua scripts in MetaBuilder packages",
"author": "MetaBuilder",
"license": "MIT",
"category": "tools",
"minLevel": 3,
"primary": false,
"icon": "static_content/icon.svg",
"keywords": [
"testing",
"lua",
"unit-test",
"framework",
"assertions",
"mocks"
],
"dependencies": {},
"devDependencies": {},
"exports": {
"components": [
"TestRunner",
"TestResults"
],
"scripts": [
"framework",
"runner",
"assertions",
"mocks"
]
},
"tests": {
"scripts": [
"tests/metadata.test.lua"
],
"parameterized": [
{
"parameters": "tests/metadata.cases.json"
}
]
}
}