mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
- 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.
21 lines
510 B
JSON
21 lines
510 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"editorBackground": "#1e1e1e",
|
|
"sidebarBackground": "#252526",
|
|
"tabBarBackground": "#2d2d2d",
|
|
"terminalBackground": "#0d1117",
|
|
"lineNumberColor": "#858585",
|
|
"selectionBackground": "#264f78"
|
|
},
|
|
"spacing": {
|
|
"sidebarWidth": "240px",
|
|
"bottomPanelHeight": "200px",
|
|
"tabHeight": "36px"
|
|
},
|
|
"shadows": {
|
|
"panel": "0 2px 8px rgba(0, 0, 0, 0.3)"
|
|
}
|
|
}
|