Files
openclaw/extensions/matrix/package.json
T

60 lines
1.5 KiB
JSON
Raw Normal View History

2026-01-15 08:29:17 +00:00
{
2026-01-30 03:15:10 +01:00
"name": "@openclaw/matrix",
"version": "2026.4.6",
2026-01-30 03:15:10 +01:00
"description": "OpenClaw Matrix channel plugin",
2026-01-31 21:13:13 +09:00
"type": "module",
"dependencies": {
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.4.0",
"@matrix-org/matrix-sdk-crypto-wasm": "18.0.0",
2026-03-19 01:53:57 -04:00
"fake-indexeddb": "^6.2.5",
2026-03-22 08:36:35 -07:00
"markdown-it": "14.1.1",
2026-03-31 22:55:44 +09:00
"matrix-js-sdk": "41.3.0-rc.0",
2026-03-27 09:50:05 +05:30
"music-metadata": "^11.12.3"
2026-01-31 21:13:13 +09:00
},
2026-03-31 21:53:29 +01:00
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*",
2026-03-31 21:53:29 +01:00
"openclaw": "workspace:*"
},
"peerDependencies": {
"openclaw": ">=2026.4.6"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
2026-01-30 03:15:10 +01:00
"openclaw": {
2026-01-17 10:49:49 +00:00
"extensions": [
"./index.ts"
2026-01-20 11:11:42 +00:00
],
2026-03-15 18:46:22 -07:00
"setupEntry": "./setup-entry.ts",
2026-01-20 11:11:42 +00:00
"channel": {
"id": "matrix",
"label": "Matrix",
"selectionLabel": "Matrix (plugin)",
"docsPath": "/channels/matrix",
"docsLabel": "matrix",
"blurb": "open protocol; install the plugin to enable.",
"order": 70,
2026-04-05 20:16:57 -04:00
"quickstartAllowFrom": true,
"persistedAuthState": {
"specifier": "./auth-presence",
"exportName": "hasAnyMatrixAuth"
}
2026-01-20 11:11:42 +00:00
},
"install": {
2026-01-30 03:15:10 +01:00
"npmSpec": "@openclaw/matrix",
"defaultChoice": "npm",
"minHostVersion": ">=2026.4.6",
"allowInvalidConfigRecovery": true
},
2026-03-19 01:53:57 -04:00
"releaseChecks": {
"rootDependencyMirrorAllowlist": [
"@matrix-org/matrix-sdk-crypto-wasm",
2026-03-19 01:53:57 -04:00
"@matrix-org/matrix-sdk-crypto-nodejs",
"matrix-js-sdk"
2026-03-19 01:53:57 -04:00
]
2026-01-20 11:11:42 +00:00
}
2026-01-15 08:29:17 +00:00
}
}