mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 09:14:56 +00:00
87 lines
1.7 KiB
JSON
87 lines
1.7 KiB
JSON
{
|
|
"packageId": "forum_forge",
|
|
"name": "Forum Forge",
|
|
"version": "1.0.0",
|
|
"description": "Modern forum starter with categories, threads, and moderation lanes.",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "social",
|
|
"dependencies": [
|
|
"ui_permissions",
|
|
"data_table",
|
|
"form_builder"
|
|
],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"scripts": [
|
|
"create_thread",
|
|
"view_categories",
|
|
"thread_list"
|
|
],
|
|
"components": []
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json",
|
|
"tests/components.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 2,
|
|
"schema": {
|
|
"entities": [
|
|
"ForumCategory",
|
|
"ForumThread",
|
|
"ForumPost"
|
|
],
|
|
"path": "schema/entities.yaml"
|
|
},
|
|
"primary": true,
|
|
"permissions": {
|
|
"forum.thread.create": {
|
|
"minLevel": 2,
|
|
"description": "Create forum threads"
|
|
},
|
|
"forum.view": {
|
|
"minLevel": 2,
|
|
"description": "View forum categories and threads"
|
|
},
|
|
"forum.moderate": {
|
|
"minLevel": 3,
|
|
"description": "Moderate forum content"
|
|
},
|
|
"forum.category.manage": {
|
|
"minLevel": 4,
|
|
"description": "Manage forum categories"
|
|
},
|
|
"forum.post.create": {
|
|
"minLevel": 2,
|
|
"description": "Create forum posts"
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json"
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "Create Thread",
|
|
"render": "create_thread"
|
|
},
|
|
{
|
|
"name": "View Categories",
|
|
"render": "view_categories"
|
|
},
|
|
{
|
|
"name": "Thread List",
|
|
"render": "thread_list"
|
|
}
|
|
]
|
|
}
|
|
}
|