{
  "name": "@oxpulse/chat-sdk",
  "version": "3.0.6",
  "description": "OxPulse Chat SDK — send/list/subscribe over the OxPulse SDK HTTP API. CSP-safe (zero eval/Function calls).",
  "license": "AGPL-3.0-or-later",
  "author": "Anatoly Koptev",
  "homepage": "https://github.com/anatolykoptev/oxpulse-chat-sdk/tree/main/packages/chat-sdk",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anatolykoptev/oxpulse-chat-sdk.git",
    "directory": "packages/chat-sdk"
  },
  "bugs": {
    "url": "https://github.com/anatolykoptev/oxpulse-chat-sdk/issues"
  },
  "keywords": [
    "oxpulse",
    "chat",
    "sdk",
    "e2ee",
    "messaging",
    "marketplace",
    "csp-safe"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./thumbhash": {
      "types": "./dist/thumbhash.d.ts",
      "import": "./dist/thumbhash.js"
    },
    "./attachments": {
      "types": "./dist/attachments.d.ts",
      "import": "./dist/attachments.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "idb-keyval": "^6.2.1",
    "sframe-ratchet": "0.5.0",
    "thumbhash": "^0.1.1",
    "@noble/curves": "^2.2.0",
    "@noble/hashes": "^2.2.0",
    "@oxpulse/wire-codec": "^0.4.1"
  },
  "devDependencies": {
    "fake-indexeddb": "^6",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc --outDir dist",
    "typecheck": "tsc --noEmit",
    "pretest": "npm run build",
    "test": "vitest run"
  }
}