mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Changed devDependencies from "lua_test" to "testing" in package.json for ui_level4, ui_level5, ui_level6, ui_login, ui_pages, ui_permissions, user_manager, and workflow_editor. - Removed legacy test scripts and parameterized tests, replacing them with a unified test suite structure in the tests section of package.json. - Introduced new metadata.params.json files for each package to define test parameters for package ID validation, icon file existence, and JSON schema validation. - Created new metadata.test.json files for each package to define structured test cases for validating package metadata, including checks for package ID, icon file existence, and schema validity.
53 lines
1.0 KiB
JSON
53 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-metadata.schema.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.",
|
|
"author": "MetaBuilder Team",
|
|
"license": "MIT",
|
|
"category": "social",
|
|
"icon": "\ud83d\udcac",
|
|
"minLevel": 2,
|
|
"primary": true,
|
|
"tags": [
|
|
"chat",
|
|
"irc",
|
|
"messaging",
|
|
"realtime"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"testing": "*"
|
|
},
|
|
"exports": {
|
|
"components": [
|
|
"IRCWebchat",
|
|
"ChannelList",
|
|
"MessageList",
|
|
"UserList",
|
|
"MessageInput"
|
|
],
|
|
"scripts": [
|
|
"send_message",
|
|
"handle_command",
|
|
"format_time",
|
|
"user_join",
|
|
"user_leave"
|
|
]
|
|
},
|
|
"tests": {
|
|
"suites": [
|
|
"tests/metadata.test.json"
|
|
]
|
|
},
|
|
"schema": {
|
|
"entities": [
|
|
"IRCChannel",
|
|
"IRCMessage",
|
|
"IRCMembership"
|
|
],
|
|
"path": "schema/entities.yaml"
|
|
}
|
|
}
|