{
  "name": "@xmtp/browser-sdk",
  "version": "7.0.0",
  "description": "XMTP client SDK for browsers written in TypeScript",
  "keywords": [
    "xmtp",
    "messaging",
    "web3",
    "sdk",
    "js",
    "ts",
    "javascript",
    "typescript"
  ],
  "homepage": "https://github.com/xmtp/xmtp-js",
  "bugs": {
    "url": "https://github.com/xmtp/xmtp-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/xmtp/xmtp-js.git",
    "directory": "sdks/browser-sdk"
  },
  "license": "MIT",
  "author": "XMTP Labs <eng@xmtp.com>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "yarn clean:dist && yarn rollup -c",
    "clean": "rm -rf .turbo && rm -rf node_modules && yarn clean:dist",
    "clean:dist": "rm -rf dist",
    "dev": "yarn clean:dist && yarn rollup -c --watch",
    "test": "vitest run",
    "test:debug": "vitest run --inspect-brk --no-file-parallelism",
    "typecheck": "tsc"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 3 chrome versions",
      "last 3 firefox versions",
      "last 3 safari versions"
    ]
  },
  "dependencies": {
    "@xmtp/content-type-primitives": "3.0.0",
    "@xmtp/wasm-bindings": "1.10.0"
  },
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.3.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@vitest/browser": "^4.0.18",
    "@vitest/browser-playwright": "^4.0.18",
    "@vitest/coverage-v8": "^4.0.18",
    "@web/rollup-plugin-copy": "^0.5.1",
    "playwright": "^1.58.0",
    "rollup": "^4.59.0",
    "rollup-plugin-dts": "^6.3.0",
    "rollup-plugin-tsconfig-paths": "^1.5.2",
    "typescript": "^5.9.3",
    "viem": "^2.44.4",
    "vite": "^7.3.1",
    "vite-tsconfig-paths": "^6.0.4",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "viem": ">=2"
  },
  "peerDependenciesMeta": {
    "viem": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true,
    "registry": "https://registry.npmjs.org/"
  }
}
