package.jsonβ’1.89 kB
{
"name": "@thesammykins/beep-boop-mcp-server",
"version": "1.3.2",
"description": "MCP server for monorepo work coordination using beep/boop files",
"main": "dist/index.js",
"type": "module",
"bin": {
"beep-boop-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE",
"docs/",
"example-configs/"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"listen": "tsx src/ingress/index.ts",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified yet - build verification serves as basic test\" && npm run build",
"test:webhooks": "npm run build && tsx test-webhooks.ts",
"config": "./select-config.sh",
"config:dev": "./select-config.sh development",
"config:prod": "./select-config.sh production",
"config:ci": "./select-config.sh ci",
"config:enterprise": "./select-config.sh enterprise"
},
"keywords": [
"mcp",
"server",
"coordination",
"monorepo",
"typescript",
"ai-agents"
],
"author": "thesammykins",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thesammykins/beep_boop_mcp.git"
},
"bugs": {
"url": "https://github.com/thesammykins/beep_boop_mcp/issues"
},
"homepage": "https://github.com/thesammykins/beep_boop_mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"@slack/bolt": "^3.18.0",
"@slack/web-api": "^7.4.0",
"@slack/webhook": "^7.0.5",
"discord.js": "^14.15.3",
"discord-webhook-node": "^1.1.8",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}