{
  "name": "@d3oxy/msg91",
  "version": "0.0.2",
  "description": "TypeScript SDK for MSG91 APIs - SMS OTP, WhatsApp, and more",
  "author": "d3oxy",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/d3oxy/msg91-js.git"
  },
  "keywords": [
    "msg91",
    "sms",
    "otp",
    "whatsapp",
    "typescript",
    "sdk",
    "india"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./sms-otp": {
      "import": {
        "types": "./dist/services/sms-otp/index.d.ts",
        "default": "./dist/services/sms-otp/index.js"
      },
      "require": {
        "types": "./dist/services/sms-otp/index.d.cts",
        "default": "./dist/services/sms-otp/index.cjs"
      }
    },
    "./whatsapp": {
      "import": {
        "types": "./dist/services/whatsapp/index.d.ts",
        "default": "./dist/services/whatsapp/index.js"
      },
      "require": {
        "types": "./dist/services/whatsapp/index.d.cts",
        "default": "./dist/services/whatsapp/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "bun run build:esm && bun run build:cjs && bun run build:types",
    "build:esm": "bun build ./src/index.ts ./src/services/sms-otp/index.ts ./src/services/whatsapp/index.ts --outdir ./dist --target node --splitting",
    "build:cjs": "bun build ./src/index.ts --outfile ./dist/index.cjs --target node",
    "build:types": "tsc --emitDeclarationOnly",
    "test": "bun test",
    "prepublishOnly": "bun run build"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
