@elizaos/plugin-discord 1.3.2 → 1.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-discord",
3
- "version": "1.3.2",
3
+ "version": "1.3.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "@discordjs/opus": "^0.10.0",
26
26
  "@discordjs/rest": "2.4.3",
27
27
  "@discordjs/voice": "0.18.0",
28
- "@elizaos/core": "^1.6.1",
28
+ "@elizaos/core": "^1.7.2",
29
29
  "discord.js": "14.18.0",
30
30
  "fast-levenshtein": "^3.0.0",
31
31
  "fluent-ffmpeg": "^2.1.3",
@@ -34,9 +34,14 @@
34
34
  "opusscript": "^0.1.1",
35
35
  "prism-media": "1.3.5",
36
36
  "typescript": "^5.8.3",
37
- "zod": "4.1.11"
37
+ "zod": "4.1.13"
38
38
  },
39
39
  "devDependencies": {
40
+ "@elizaos/config": "1.6.5",
41
+ "@eslint/js": "^9.17.0",
42
+ "@typescript-eslint/eslint-plugin": "^8.22.0",
43
+ "@typescript-eslint/parser": "^8.22.0",
44
+ "eslint": "^9.17.0",
40
45
  "prettier": "3.5.3",
41
46
  "tsup": "8.4.0",
42
47
  "vitest": "1.6.1"
@@ -45,7 +50,8 @@
45
50
  "build": "tsup",
46
51
  "dev": "tsup --watch",
47
52
  "test": "elizaos test",
48
- "lint": "prettier --write ./src",
53
+ "lint": "eslint ./src --fix && prettier --write ./src",
54
+ "lint:check": "eslint ./src",
49
55
  "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
50
56
  "format": "prettier --write ./src",
51
57
  "format:check": "prettier --check ./src"
@@ -107,6 +113,12 @@
107
113
  "description": "If true, the bot will only respond when explicitly mentioned. Can be overridden by character settings.",
108
114
  "required": false,
109
115
  "sensitive": false
116
+ },
117
+ "DISCORD_LISTEN_CHANNEL_IDS": {
118
+ "type": "string",
119
+ "description": "Comma-separated list of Discord channel IDs where the bot will only listen (not respond).",
120
+ "required": false,
121
+ "sensitive": false
110
122
  }
111
123
  }
112
124
  }