mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-02 17:55:07 +00:00
66 lines
1.3 KiB
JSON
66 lines
1.3 KiB
JSON
{
|
|
"packageId": "admin_dialog",
|
|
"name": "Admin Dialog",
|
|
"version": "1.0.0",
|
|
"description": "Admin dialog components",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "ui",
|
|
"dependencies": [
|
|
"ui_dialogs",
|
|
"ui_permissions"
|
|
],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"scripts": [
|
|
"confirm_dialog",
|
|
"delete_confirm",
|
|
"action_dialog"
|
|
],
|
|
"components": []
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json",
|
|
"tests/components.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 4,
|
|
"primary": false,
|
|
"permissions": {
|
|
"admin.dialog.show": {
|
|
"minLevel": 4,
|
|
"description": "Display admin confirmation dialogs"
|
|
},
|
|
"admin.dialog.action": {
|
|
"minLevel": 4,
|
|
"description": "Execute admin dialog actions"
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json"
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "Confirm Dialog",
|
|
"render": "confirm_dialog"
|
|
},
|
|
{
|
|
"name": "Delete Confirmation",
|
|
"render": "delete_confirm"
|
|
},
|
|
{
|
|
"name": "Action Dialog",
|
|
"render": "action_dialog"
|
|
}
|
|
]
|
|
}
|
|
}
|