Files
openclaw/extensions/irc/package.json
Vincent Koc 3ce5a8366a fix(plugins): enforce minimum host versions for installable plugins (#52094)
* fix(plugins): enforce min host versions

* fix(plugins): tighten min host version validation

* chore(plugins): trim dead min host version code

* fix(plugins): handle malformed min host metadata

* fix(plugins): key manifest cache by host version
2026-03-22 09:12:08 -07:00

29 lines
652 B
JSON

{
"name": "@openclaw/irc",
"version": "2026.3.14",
"description": "OpenClaw IRC channel plugin",
"type": "module",
"dependencies": {
"zod": "^4.3.6"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"install": {
"minHostVersion": ">=2026.3.14"
},
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "irc",
"label": "IRC",
"selectionLabel": "IRC (Server + Nick)",
"detailLabel": "IRC",
"docsPath": "/channels/irc",
"docsLabel": "irc",
"blurb": "classic IRC networks with DM/channel routing and pairing controls.",
"systemImage": "network"
}
}
}