{
  "name": "@isnap/sdk",
  "version": "1.3.0",
  "description": "Official TypeScript SDK for the iSnap P2P telephony API",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "keywords": [
    "isnap",
    "imessage",
    "sms",
    "rcs",
    "p2p",
    "telephony",
    "messaging",
    "sdk",
    "typescript"
  ],
  "homepage": "https://github.com/WhatSnap/iSnap-App/tree/main/packages/sdk#readme",
  "bugs": {
    "url": "https://github.com/WhatSnap/iSnap-App/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WhatSnap/iSnap-App.git",
    "directory": "packages/sdk"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && bun scripts/copy-generated.ts",
    "lint": "eslint src/ examples/",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "generate": "openapi-typescript ../backend/openapi.json -o src/generated/openapi.d.ts",
    "verify:generated": "bun scripts/verify-generated.ts",
    "prepublishOnly": "bun run verify:generated && bun run lint && bun run typecheck && bun run test && bun run build"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^22.0.0",
    "eslint": "^9.0.0",
    "openapi-typescript": "^7.13.0",
    "typescript": "^5.7.0",
    "typescript-eslint": "^8.57.1",
    "vitest": "^3.0.0"
  }
}
