package.json•965 B
{
"name": "slack-bot-mcp",
"version": "1.0.0",
"description": "Slack MCP Server - Model Context Protocol server for Slack integration",
"main": "build/index.js",
"type": "module",
"bin": {
"slack-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node build/index.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hais/slack-bot-mcp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hais/slack-bot-mcp/issues"
},
"homepage": "https://github.com/Hais/slack-bot-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"@slack/types": "^2.17.0",
"@slack/web-api": "^7.11.0",
"dotenv": "^17.2.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.7.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}