mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
9dab4999c0
- Created package.json for Nerd Mode IDE with dependencies and exports. - Defined access permissions in roles.json for IDE functionalities. - Implemented file system and execution functions in functions.json. - Added SVG icon for the IDE in static_content/icon.svg. - Configured Storybook for the IDE with various components and examples. - Established design tokens in tokens.json for consistent styling. - Developed parameterized test data in metadata.params.json for testing. - Created metadata validation tests in metadata.test.json to ensure package integrity.
23 lines
780 B
JSON
23 lines
780 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/test-parameters.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"package": "nerd_mode_ide",
|
|
"description": "Parameterized test data for nerd mode IDE tests",
|
|
|
|
"parameters": {
|
|
"sampleFiles": [
|
|
{ "path": "/index.ts", "language": "typescript" },
|
|
{ "path": "/styles.css", "language": "css" },
|
|
{ "path": "/data.json", "language": "json" },
|
|
{ "path": "/script.lua", "language": "lua" },
|
|
{ "path": "/README.md", "language": "markdown" }
|
|
],
|
|
"gitOperations": [
|
|
{ "operation": "commit", "requiresMessage": true },
|
|
{ "operation": "push", "requiresRemote": true },
|
|
{ "operation": "pull", "requiresRemote": true }
|
|
],
|
|
"consoleLogTypes": ["info", "warn", "error", "debug"]
|
|
}
|
|
}
|