{
  "name": "signalk-slack-notify",
  "version": "1.0.1",
  "description": "Send notifications from Signal K to Slack using Webhook API",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "doc/slack_alert.jpg"
  ],
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "clean:test": "node -e \"require('node:fs').rmSync('.test-dist', { recursive: true, force: true })\"",
    "format": "prettier --check .",
    "format:write": "prettier --write .",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "npm run clean:test && tsc -p tsconfig.test.json && node --test --test-isolation=none --test-concurrency=1 .test-dist/test/**/*.test.js && npm run clean:test",
    "build": "npm run clean && tsc -p tsconfig.build.json",
    "audit": "npm audit --audit-level=high",
    "verify": "npm run format && npm run lint && npm run typecheck && npm test && npm run build && npm run audit && npm pack --dry-run"
  },
  "keywords": [
    "signalk-node-server-plugin",
    "signalk-category-notifications"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/KEGustafsson/signalk-slack-notify.git"
  },
  "author": "Karl-Erik Gustafsson",
  "license": "ISC",
  "homepage": "https://github.com/KEGustafsson/signalk-slack-notify#readme",
  "dependencies": {
    "slack-notify": "^2.0.7"
  },
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@types/node": "^25.5.2",
    "eslint": "^9.26.0",
    "globals": "^15.4.0",
    "prettier": "^3.5.3",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.58.0"
  }
}
