mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
79 lines
1.6 KiB
JSON
79 lines
1.6 KiB
JSON
{
|
|
"packageId": "workflow_editor",
|
|
"name": "Workflow Editor",
|
|
"version": "1.0.0",
|
|
"description": "Workflow editor and run status components",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "editors",
|
|
"dependencies": [],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"scripts": [
|
|
"editor",
|
|
"status",
|
|
"run"
|
|
],
|
|
"components": [
|
|
"WorkflowEditor",
|
|
"WorkflowRunCard",
|
|
"WorkflowRunStatus"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/status.test.lua",
|
|
"tests/editor.test.lua",
|
|
"tests/run.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/status.cases.json",
|
|
"tests/editor.cases.json",
|
|
"tests/run.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 5,
|
|
"primary": true,
|
|
"permissions": {
|
|
"workflow.view": {
|
|
"minLevel": 5,
|
|
"description": "View workflows"
|
|
},
|
|
"workflow.create": {
|
|
"minLevel": 5,
|
|
"description": "Create workflows"
|
|
},
|
|
"workflow.delete": {
|
|
"minLevel": 5,
|
|
"description": "Delete workflows"
|
|
},
|
|
"workflow.run": {
|
|
"minLevel": 5,
|
|
"description": "Run workflows"
|
|
},
|
|
"workflow.edit": {
|
|
"minLevel": 5,
|
|
"description": "Edit workflows",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "WorkflowEditor",
|
|
"render": "editor"
|
|
}
|
|
]
|
|
}
|
|
}
|