mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 16:54:57 +00:00
78 lines
1.5 KiB
JSON
78 lines
1.5 KiB
JSON
{
|
|
"packageId": "ui_level2",
|
|
"name": "Level 2 - User Dashboard",
|
|
"version": "1.0.0",
|
|
"description": "User dashboard with profile, comments, and chat",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "ui",
|
|
"dependencies": [
|
|
"ui_permissions",
|
|
"ui_header",
|
|
"ui_intro"
|
|
],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"pages": [
|
|
"level2"
|
|
],
|
|
"scripts": [
|
|
"layout",
|
|
"profile",
|
|
"comments"
|
|
],
|
|
"components": []
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json",
|
|
"tests/components.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 2,
|
|
"primary": true,
|
|
"permissions": {
|
|
"level2.comments.post": {
|
|
"minLevel": 2,
|
|
"description": "Post comments"
|
|
},
|
|
"level2.profile.view": {
|
|
"minLevel": 2,
|
|
"description": "View profile"
|
|
},
|
|
"level2.comments.view": {
|
|
"minLevel": 2,
|
|
"description": "View comments"
|
|
},
|
|
"level2.profile.edit": {
|
|
"minLevel": 2,
|
|
"description": "Edit profile"
|
|
},
|
|
"level2.dashboard.view": {
|
|
"minLevel": 2,
|
|
"description": "View user dashboard"
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json"
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "Profile",
|
|
"render": "profile"
|
|
},
|
|
{
|
|
"name": "Comments",
|
|
"render": "comments"
|
|
}
|
|
]
|
|
}
|
|
}
|