pm2-slack-alerts
Version:
A PM2 module that sends formatted Slack notifications for process events with support for clustering, mentions, metrics, and per-app config.
43 lines • 921 B
JSON
{
"name": "pm2-slack-alerts",
"version": "1.0.1",
"description": "A PM2 module that sends formatted Slack notifications for process events with support for clustering, mentions, metrics, and per-app config.",
"main": "dist/index.js",
"scripts": {
"build": "tsc"
},
"keywords": [
"pm2",
"slack",
"alerts",
"notification",
"pm2-module",
"pm2-slack",
"pm2-notifier",
"process-monitoring"
],
"author": "Lütfü Öğretici",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mogretici/pm2-slack-alerts.git"
},
"dependencies": {
"axios": "^1.6.0",
"pm2": "^6.0.5"
},
"devDependencies": {
"@types/node": "^20.5.0",
"typescript": "^5.3.3"
},
"pm2": {
"post_install": "npm run build"
},
"apps": [
{
"name": "pm2-slack-alerts",
"script": "dist/index.js",
"watch": false
}
]
}