{ "name": "@elizaos/plugin-slack", "version": "2.0.3-beta.7", "description": "Slack integration plugin for elizaOS agents with Socket Mode support", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/elizaos-plugins/plugin-slack.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "registry-entry.json", "dist", "auto-enable.ts" ], "elizaos": { "plugin": { "autoEnableModule": "./auto-enable.ts", "capabilities": [ "messaging" ] } }, "keywords": [ "elizaos", "plugin", "slack", "chat", "messaging" ], "author": "elizaOS", "license": "MIT", "scripts": { "build": "bun run build.ts", "build:ts": "bun run build.ts", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "vitest run", "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "dependencies": { "@elizaos/core": "workspace:*", "@slack/bolt": "^4.1.0", "@slack/web-api": "^7.15.2" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.3", "bun-types": "^1.2.25", "typescript": "^6.0.3", "vitest": "^4.1.4" }, "peerDependencies": { "@elizaos/core": "workspace:*" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "SLACK_BOT_TOKEN": { "type": "string", "description": "Slack Bot Token (xoxb-...) for API authentication", "required": true, "sensitive": true }, "SLACK_APP_TOKEN": { "type": "string", "description": "Slack App Token (xapp-...) for Socket Mode connections", "required": true, "sensitive": true }, "SLACK_SIGNING_SECRET": { "type": "string", "description": "Slack Signing Secret for verifying requests", "required": false, "sensitive": true }, "SLACK_USER_TOKEN": { "type": "string", "description": "Optional User Token (xoxp-...) for enhanced permissions", "required": false, "sensitive": true }, "SLACK_CHANNEL_IDS": { "type": "string", "description": "Comma-separated list of channel IDs to restrict the bot to", "required": false, "sensitive": false }, "SLACK_SHOULD_IGNORE_BOT_MESSAGES": { "type": "boolean", "description": "If true, the bot will ignore messages from other bots", "required": false, "sensitive": false }, "SLACK_SHOULD_RESPOND_ONLY_TO_MENTIONS": { "type": "boolean", "description": "If true, the bot will only respond when mentioned", "required": false, "sensitive": false } } } }