mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
81 lines
1.5 KiB
JSON
81 lines
1.5 KiB
JSON
{
|
|
"packageId": "user_manager",
|
|
"name": "User Manager",
|
|
"version": "1.0.0",
|
|
"description": "User management components and actions",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "managers",
|
|
"dependencies": [
|
|
"ui_permissions",
|
|
"data_table"
|
|
],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"scripts": [
|
|
"list",
|
|
"actions"
|
|
],
|
|
"components": [
|
|
"UserManagement",
|
|
"UserList",
|
|
"UserActions"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/actions.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/actions.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 4,
|
|
"primary": true,
|
|
"permissions": {
|
|
"users.delete": {
|
|
"minLevel": 5,
|
|
"description": "Delete users"
|
|
},
|
|
"users.create": {
|
|
"minLevel": 4,
|
|
"description": "Create new users"
|
|
},
|
|
"users.edit": {
|
|
"minLevel": 4,
|
|
"description": "Edit user profiles"
|
|
},
|
|
"users.view": {
|
|
"minLevel": 4,
|
|
"description": "View user details"
|
|
},
|
|
"users.level.change": {
|
|
"minLevel": 5,
|
|
"description": "Change user access levels"
|
|
},
|
|
"users.list": {
|
|
"minLevel": 4,
|
|
"description": "List all users",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "UserManagement",
|
|
"render": "list"
|
|
}
|
|
]
|
|
}
|
|
}
|