mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-06 03:29:35 +00:00
35 lines
876 B
JSON
35 lines
876 B
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": "💬",
|
|
"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
|
|
}
|