{
  "name": "@sautipbx/voice-sdk",
  "version": "0.2.1",
  "description": "Browser SDK for placing and receiving web calls on the SautiPBX voice platform. Drop in a <script> tag (or npm install in a bundler app), authenticate with an ephemeral token from your backend, and you have a working softphone.",
  "license": "Apache-2.0",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/voice.iife.js",
  "jsdelivr": "./dist/voice.iife.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "smoke": "node scripts/smoke.mjs && node scripts/check-no-leak.mjs dist src README.md ../../scripts/softphone.html",
    "prepublishOnly": "npm run build",
    "check:leak": "node scripts/check-no-leak.mjs dist src README.md ../../scripts/softphone.html"
  },
  "keywords": [
    "webrtc",
    "sip",
    "voip",
    "softphone",
    "telephony",
    "sautipbx"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "jssip": "^3.10.1"
  },
  "devDependencies": {
    "tsup": "^8.3.0",
    "typescript": "^5.6.0"
  }
}
