{
  "name": "@walletconnect/se-sdk",
  "description": "Single-Ethreum-SDK for WalletConnect Protocol",
  "private": false,
  "version": "1.11.0",
  "author": "WalletConnect, Inc. <walletconnect.com>",
  "homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
  "license": "Apache-2.0",
  "main": "dist/index.cjs.js",
  "module": "dist/index.es.js",
  "unpkg": "dist/index.umd.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "wallet",
    "walletconnect"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build:pre": "npm run clean",
    "build:types": "tsc",
    "build:source": "rollup --config rollup.config.js",
    "build": "npm run build:pre; npm run build:source; npm run build:types",
    "test": "vitest run --dir test",
    "lint": "eslint --fix './src/**/*.ts'",
    "prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'",
    "run:examples": "cd ./examples/dapp && yarn dev & cd ./examples/wallet && yarn dev",
    "run:dapp": "cd ./examples/dapp && yarn dev",
    "run:wallet": "cd ./examples/wallet && yarn dev",
    "build:wallet": "yarn build && cd ./examples/wallet && yarn build",
    "install:all": "yarn && cd ./examples/dapp && yarn && cd ./../wallet && yarn"
  },
  "dependencies": {
    "@reown/walletkit": "1.1.1"
  },
  "devDependencies": {
    "@ethersproject/wallet": "^5.7.0",
    "@rollup/plugin-commonjs": "24.0.1",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "13.3.0",
    "@typescript-eslint/eslint-plugin": "5.33.0",
    "@typescript-eslint/parser": "5.33.0",
    "eslint": "8.22.0",
    "eslint-config-prettier": "8.5.0",
    "eslint-config-standard": "17.0.0",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-n": "^15.6.1",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-prettier": "4.2.1",
    "eslint-plugin-promise": "6.0.0",
    "eslint-plugin-react": "7.30.1",
    "eslint-plugin-standard": "5.0.0",
    "lokijs": "^1.5.12",
    "prettier": "^2.8.4",
    "rollup": "2.78.0",
    "rollup-plugin-esbuild": "4.9.3",
    "rollup-plugin-polyfill-node": "0.10.2",
    "typescript": "4.7.4",
    "utf-8-validate": "6.0.3",
    "vitest": "^0.31.1"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "module": "./dist/index.es.js",
      "default": "./dist/index.cjs.js"
    }
  }
}
