{
  "name": "@reown/walletkit",
  "description": "WalletKit for WalletConnect Protocol",
  "version": "1.5.5",
  "private": false,
  "author": "Reown, Inc.",
  "homepage": "https://github.com/reown-com/",
  "license": "SEE LICENSE IN LICENSE.md",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "unpkg": "dist/index.umd.js",
  "types": "dist/types/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "module": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "wallet",
    "walletconnect",
    "reown",
    "walletkit"
  ],
  "sideEffects": false,
  "scripts": {
    "clean": "rm -rf dist",
    "build:pre": "npm run clean",
    "build:types": "tsc",
    "build:source": "rollup --config rollup.config.js",
    "build": "npm run lint; npm run build:pre; npm run build:source; npm run build:types",
    "test": " rm -rf test/tmp && vitest run --dir test",
    "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
    "prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
  },
  "dependencies": {
    "@walletconnect/core": "2.23.9",
    "@walletconnect/jsonrpc-provider": "1.0.14",
    "@walletconnect/jsonrpc-utils": "1.0.8",
    "@walletconnect/logger": "3.0.2",
    "@walletconnect/pay": "1.0.8",
    "@walletconnect/sign-client": "2.23.9",
    "@walletconnect/types": "2.23.9",
    "@walletconnect/utils": "2.23.9"
  },
  "devDependencies": {
    "ethers": "6.13.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/reown-com/reown-walletkit-js.git",
    "directory": "packages/walletkit"
  },
  "publishConfig": {
    "provenance": true
  }
}