mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +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.
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/permissions.schema.json",
|
|
"schemaVersion": "1.0.0",
|
|
"package": "nerd_mode_ide",
|
|
"description": "Nerd Mode IDE access permissions",
|
|
"permissions": [
|
|
{
|
|
"id": "ide.view",
|
|
"name": "View IDE",
|
|
"description": "Access the IDE interface",
|
|
"resource": "ide",
|
|
"action": "read",
|
|
"scope": "global",
|
|
"minLevel": 4
|
|
},
|
|
{
|
|
"id": "ide.edit",
|
|
"name": "Edit Files",
|
|
"description": "Create, edit, and delete files",
|
|
"resource": "ide",
|
|
"action": "write",
|
|
"scope": "global",
|
|
"minLevel": 4
|
|
},
|
|
{
|
|
"id": "ide.execute",
|
|
"name": "Execute Scripts",
|
|
"description": "Run scripts and tests",
|
|
"resource": "ide",
|
|
"action": "execute",
|
|
"scope": "global",
|
|
"minLevel": 4
|
|
},
|
|
{
|
|
"id": "ide.git",
|
|
"name": "Git Operations",
|
|
"description": "Commit, push, and pull",
|
|
"resource": "ide",
|
|
"action": "git",
|
|
"scope": "global",
|
|
"minLevel": 4
|
|
}
|
|
],
|
|
"resources": [
|
|
{
|
|
"id": "ide",
|
|
"name": "IDE",
|
|
"type": "system",
|
|
"description": "Nerd Mode IDE resources",
|
|
"actions": ["read", "write", "execute", "git"]
|
|
}
|
|
]
|
|
}
|