{
  "name": "slack-notify-mcp",
  "version": "0.3.0",
  "description": "MCP server for posting messages to Slack webhooks and bot API",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "type": "module",
  "bin": {
    "slack-notify-mcp": "dist/src/index.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "start": "node dist/index.js",
    "dev": "bun --watch run src/index.ts",
    "build": "npm run clean && npm run compile",
    "clean": "rm -rf dist",
    "compile": "tsc",
    "prepublishOnly": "npm run build",
    "test": "echo \"Error: no test specified\" && exit 1",
    "lint": "echo \"No linter configured\"",
    "typecheck": "tsc --noEmit"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SilasReinagel/slack-notify-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/SilasReinagel/slack-notify-mcp/issues"
  },
  "homepage": "https://github.com/SilasReinagel/slack-notify-mcp#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.1",
    "axios": "^1.7.9",
    "zod": "^3.25.64"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.0.0"
  },
  "keywords": [
    "mcp",
    "slack",
    "webhook",
    "modelcontextprotocol",
    "bot",
    "chat",
    "notification",
    "integration"
  ],
  "author": "Your Name <your.email@example.com>",
  "license": "MIT"
}
