{
  "name": "webhook-sentinelx",
  "version": "0.1.1",
  "description": "Unified webhook verification and dispatch with normalized events and de-duplication.",
  "license": "MIT",
  "author": "Yevhen Mykhailenko",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/YevhenMykhailenko/webhook-sentinelx.git"
  },
  "bugs": {
    "url": "https://github.com/YevhenMykhailenko/webhook-sentinelx/issues"
  },
  "homepage": "https://github.com/YevhenMykhailenko/webhook-sentinelx#readme",
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check ."
  },
  "keywords": [
    "webhook",
    "stripe",
    "github",
    "slack",
    "braintree",
    "verification",
    "dedup",
    "redis",
    "typescript"
  ],
  "peerDependencies": {
    "braintree": "*",
    "redis": "*"
  },
  "peerDependenciesMeta": {
    "braintree": {
      "optional": true
    },
    "redis": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^20.12.12",
    "@typescript-eslint/eslint-plugin": "^8.8.1",
    "@typescript-eslint/parser": "^8.8.1",
    "eslint": "^9.36.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "globals": "^15.9.0",
    "prettier": "^3.3.3",
    "tsup": "^8.0.1",
    "typescript": "^5.6.2",
    "vitest": "^2.0.5"
  }
}
