package.json•700 B
{
"name": "slack-mcp",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server for Slack integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"slack",
"model-context-protocol",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@slack/web-api": "^7.0.0",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}