mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
94 lines
1.9 KiB
JSON
94 lines
1.9 KiB
JSON
{
|
|
"packageId": "irc_webchat",
|
|
"name": "IRC Webchat",
|
|
"version": "1.0.0",
|
|
"description": "Classic IRC-style webchat with channels, commands, online users, and real-time messaging. Perfect for community chat rooms.",
|
|
"icon": "\u00f0\u0178\u2019\u00ac",
|
|
"author": "MetaBuilder Team",
|
|
"category": "social",
|
|
"dependencies": [],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"components": [
|
|
"IRCWebchat"
|
|
],
|
|
"layouts": [
|
|
"layout.json"
|
|
],
|
|
"luaScripts": [
|
|
"send_message",
|
|
"handle_command",
|
|
"format_time",
|
|
"user_join",
|
|
"user_leave"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json",
|
|
"tests/components.cases.json"
|
|
]
|
|
},
|
|
"tags": [
|
|
"chat",
|
|
"irc",
|
|
"messaging",
|
|
"realtime"
|
|
],
|
|
"minLevel": 2,
|
|
"schema": {
|
|
"entities": [
|
|
"IRCChannel",
|
|
"IRCMessage",
|
|
"IRCMembership"
|
|
],
|
|
"path": "schema/entities.yaml"
|
|
},
|
|
"primary": true,
|
|
"permissions": {
|
|
"irc.channel.moderate": {
|
|
"minLevel": 3,
|
|
"description": "Moderate IRC channels"
|
|
},
|
|
"irc.message.send": {
|
|
"minLevel": 2,
|
|
"description": "Send IRC messages"
|
|
},
|
|
"irc.channel.join": {
|
|
"minLevel": 2,
|
|
"description": "Join IRC channels"
|
|
},
|
|
"irc.channel.view": {
|
|
"minLevel": 2,
|
|
"description": "View IRC channels"
|
|
},
|
|
"irc.channel.create": {
|
|
"minLevel": 3,
|
|
"description": "Create IRC channels",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "IRCWebchat",
|
|
"render": "component"
|
|
}
|
|
]
|
|
}
|
|
}
|