{
  "name": "@workkit/notify",
  "version": "1.0.0",
  "description": "Unified notification dispatch for Cloudflare Workers — preferences, opt-out, quiet hours, idempotency, fallback chains, pluggable adapters (email, in-app).",
  "license": "MIT",
  "author": "Bikash Dash <beeeku>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beeeku/workkit.git",
    "directory": "packages/notify"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./email": {
      "import": {
        "types": "./dist/adapters/email/index.d.ts",
        "default": "./dist/adapters/email/index.js"
      }
    },
    "./inapp": {
      "import": {
        "types": "./dist/adapters/inapp/index.d.ts",
        "default": "./dist/adapters/inapp/index.js"
      }
    },
    "./whatsapp": {
      "import": {
        "types": "./dist/adapters/whatsapp/index.d.ts",
        "default": "./dist/adapters/whatsapp/index.js"
      }
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "bunup",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@workkit/errors": "^1.0.4"
  },
  "peerDependencies": {
    "@react-email/render": ">=1.0.0",
    "@workkit/mail": "^0.2.0"
  },
  "peerDependenciesMeta": {
    "@react-email/render": {
      "optional": true
    },
    "@workkit/mail": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@workkit/mail": "workspace:*",
    "@workkit/testing": "workspace:*",
    "better-sqlite3": "^12.9.0",
    "zod": "^3.23.0"
  },
  "keywords": [
    "cloudflare",
    "workers",
    "notify",
    "notifications",
    "email",
    "resend",
    "sse",
    "in-app",
    "whatsapp",
    "meta",
    "twilio",
    "gupshup",
    "cloudflare-email",
    "workkit"
  ]
}
