mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
74 lines
1.5 KiB
JSON
74 lines
1.5 KiB
JSON
{
|
|
"packageId": "code_editor",
|
|
"name": "Code Editor",
|
|
"version": "1.0.0",
|
|
"description": "Code editor components for JSON, Lua, and themes",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "editors",
|
|
"dependencies": [],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"scripts": [
|
|
"json",
|
|
"lua",
|
|
"theme"
|
|
],
|
|
"components": [
|
|
"CodeEditor",
|
|
"JsonEditor",
|
|
"LuaEditor",
|
|
"ThemeEditor"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua",
|
|
"tests/editor.test.lua",
|
|
"tests/theme.test.lua",
|
|
"tests/json.test.lua",
|
|
"tests/lua.test.lua",
|
|
"tests/init.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/editor.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 5,
|
|
"primary": false,
|
|
"permissions": {
|
|
"editor.theme.apply": {
|
|
"minLevel": 5,
|
|
"description": "Apply editor themes"
|
|
},
|
|
"editor.code.edit": {
|
|
"minLevel": 5,
|
|
"description": "Edit code in editor"
|
|
},
|
|
"editor.code.view": {
|
|
"minLevel": 5,
|
|
"description": "View code in editor",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "Code_Editor",
|
|
"render": "json"
|
|
}
|
|
]
|
|
}
|
|
}
|