{
  "name": "@digicroz/onesignal",
  "version": "1.0.0",
  "description": "Type-safe OneSignal push notification client for Node.js and TypeScript",
  "keywords": [
    "onesignal",
    "push-notifications",
    "typescript",
    "notifications",
    "onesignal-api",
    "node"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "react-native": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typings": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/digicroz/onesignal.git"
  },
  "homepage": "https://github.com/digicroz/onesignal#readme",
  "bugs": {
    "url": "https://github.com/digicroz/onesignal/issues"
  },
  "author": {
    "name": "Adarsh Hatkar",
    "url": "https://github.com/AdarshHatkar"
  },
  "license": "MIT",
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "npx rimraf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "test:coverage:watch": "vitest --coverage",
    "prepublishOnly": "npm run clean && npm run build",
    "release:patch": "npm version patch",
    "postversion": "git push && git push --tags && npm publish",
    "link": "npm run build && npm link",
    "unlink": "npm unlink -g @digicroz/onesignal"
  },
  "devDependencies": {
    "@types/node": "^24.3.0",
    "@vitest/coverage-v8": "^4.0.16",
    "@vitest/ui": "^4.0.16",
    "tsup": "^8.5.0",
    "typescript": "^5.4.0",
    "vitest": "^4.0.16"
  },
  "dependencies": {
    "@digicroz/js-kit": "^1.0.13",
    "axios": "^1.13.6",
    "zod": "^3.23.8"
  }
}
