{
  "name": "@omnitron-dev/titan-notifications",
  "version": "0.2.0",
  "description": "Notifications module for Titan framework with multi-channel delivery, Rotif messaging, and DLQ",
  "author": "LuxQuant",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./rotif": {
      "types": "./dist/rotif/index.d.ts",
      "default": "./dist/rotif/index.js"
    }
  },
  "files": [
    "dist",
    "lua"
  ],
  "dependencies": {
    "handlebars": "^4.7.9",
    "ioredis": "^5.10.1",
    "minimatch": "^10.2.5",
    "msgpackr": "^2.0.1",
    "@omnitron-dev/common": "0.2.0",
    "@omnitron-dev/eventemitter": "0.2.0"
  },
  "peerDependencies": {
    "amqplib": ">=0.10.0",
    "firebase-admin": ">=12.0.0",
    "nodemailer": ">=6.0.0",
    "twilio": ">=4.0.0",
    "@omnitron-dev/titan": "0.2.0",
    "@omnitron-dev/titan-events": "0.2.0",
    "@omnitron-dev/titan-redis": "0.2.0"
  },
  "peerDependenciesMeta": {
    "nodemailer": {
      "optional": true
    },
    "twilio": {
      "optional": true
    },
    "firebase-admin": {
      "optional": true
    },
    "amqplib": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "25.6.0",
    "reflect-metadata": "^0.2.2",
    "typescript": "^5.9.3",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "rm -rf dist node_modules/.tmp && tsc -p ./tsconfig.json",
    "test": "vitest run",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit"
  }
}