mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* docs(secrets): remove retired web credential paths * refactor(web): remove retired provider compatibility paths * refactor(providers): delete retired compatibility routes * refactor(secrets): remove retired credential aliases * refactor(plugin-sdk): delete retired compatibility surfaces * docs(plugin-sdk): remove retired migration guidance * chore(plugin-sdk): refresh rebased surface budgets * chore(plugin-sdk): refresh API removal baseline * refactor(compat): migrate retired internal callers * chore(plugin-sdk): refresh current-main baselines * test(config): migrate plugin-owned secret assertions * test(gateway): narrow plugin secret refs * fix(plugin-sdk): preserve private boundary type identity * chore(compat): remove stale sweep references * chore(lint): lower max-lines budget * refactor(secrets): remove unused web helper * build(plugin-sdk): drop removed compat entries * chore(plugin-sdk): refresh rebased API baseline * chore(plugin-sdk): use Linux API baseline hash * fix(plugin-sdk): preserve private bundled build entries * fix(plugin-sdk): package private runtime facades * fix(plugins): preserve external credential contracts
91 lines
2.2 KiB
JSON
91 lines
2.2 KiB
JSON
{
|
|
"name": "@openclaw/discord",
|
|
"version": "2026.7.2",
|
|
"description": "OpenClaw Discord channel plugin for channels, DMs, commands, and app events.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@discord/embedded-app-sdk": "2.5.0",
|
|
"@discordjs/voice": "0.19.2",
|
|
"discord-api-types": "0.38.49",
|
|
"libopus-wasm": "0.2.0",
|
|
"p-map": "7.0.5",
|
|
"typebox": "1.3.3",
|
|
"undici": "8.5.0",
|
|
"ws": "8.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.7.2"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"legacyStateMigrations": true
|
|
},
|
|
"channel": {
|
|
"id": "discord",
|
|
"configuredState": {
|
|
"env": {
|
|
"anyOf": [
|
|
"DISCORD_BOT_TOKEN"
|
|
]
|
|
}
|
|
},
|
|
"approvalFlags": ["native"],
|
|
"label": "Discord",
|
|
"selectionLabel": "Discord (Bot API)",
|
|
"detailLabel": "Discord Bot",
|
|
"docsPath": "/channels/discord",
|
|
"docsLabel": "discord",
|
|
"blurb": "very well supported right now.",
|
|
"systemImage": "bubble.left.and.bubble.right",
|
|
"markdownCapable": true,
|
|
"preferSessionLookupForAnnounceTarget": true,
|
|
"commands": {
|
|
"nativeCommandsAutoEnabled": true,
|
|
"nativeSkillsAutoEnabled": true
|
|
}
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/discord",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.5.26",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.7.2"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2",
|
|
"staticAssets": [
|
|
{
|
|
"source": "./assets/embedded-app-sdk.mjs",
|
|
"output": "assets/embedded-app-sdk.mjs"
|
|
}
|
|
]
|
|
},
|
|
"assetScripts": {
|
|
"build": "node ../../scripts/build-discord-activity-sdk.mjs"
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|