{
  "name": "@am25/webpush",
  "version": "1.1.0",
  "description": "Self-hosted Web Push notification server. Deploy in seconds and send push notifications from any application.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "webpush": "./dist/bin/webpush.js",
    "create-webpush": "./dist/bin/create.js"
  },
  "files": [
    "dist/"
  ],
  "author": {
    "name": "Alejandro Mártir",
    "url": "https://alemartir.com"
  },
  "homepage": "https://github.com/am25-labs/webpush#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/am25-labs/webpush.git"
  },
  "bugs": {
    "url": "https://github.com/am25-labs/webpush/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "web-push",
    "push-notifications",
    "webpush",
    "vapid",
    "express",
    "nodejs",
    "typescript",
    "self-hosted",
    "am25"
  ],
  "license": "MIT",
  "dependencies": {
    "cors": "2.8.6",
    "dotenv": "17.3.1",
    "express": "5.2.1",
    "web-push": "3.6.7"
  },
  "devDependencies": {
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.6",
    "@types/node": "^25.5.0",
    "@types/web-push": "^3.6.4",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc",
    "start": "node ./dist/src/server.js",
    "dev": "tsc --watch",
    "generate:vapid": "node dist/src/vapid.js"
  }
}