{
  "name": "@hashgraphonline/hashinal-wc",
  "version": "2.0.64",
  "description": "The official Hashinal Wallet Connect SDK. A set of easy-to-use functions to interact with Hedera through Wallet Connect.",
  "type": "module",
  "files": [
    "dist"
  ],
  "license": "Apache-2.0",
  "main": "./dist/cjs/hashinal-wc.cjs",
  "module": "./dist/es/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/es/index.d.ts",
        "default": "./dist/es/index.js"
      },
      "require": {
        "types": "./dist/es/index.d.ts",
        "default": "./dist/cjs/hashinal-wc.cjs"
      }
    }
  },
  "types": "./dist/es/index.d.ts",
  "dependencies": {
    "@hashgraph/hedera-wallet-connect": "2.0.6",
    "@hashgraph/proto": "^2.25.0",
    "@hashgraph/sdk": "^2.78.0",
    "@reown/appkit": "1.8.17",
    "fetch-retry": "^6.0.0",
    "long": "^5.2.3"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@types/isomorphic-fetch": "^0.0.39",
    "@types/long": "^5.0.0",
    "@types/node": "^22.2.0",
    "@vitejs/plugin-react": "^5.0.4",
    "@walletconnect/types": "^2.23.1",
    "assert": "^2.1.0",
    "buffer": "^6.0.3",
    "crypto-browserify": "^3.12.0",
    "https-browserify": "^1.0.0",
    "node-stdlib-browser": "^1.3.1",
    "os-browserify": "^0.3.0",
    "process": "^0.11.10",
    "rimraf": "^5.0.0",
    "stream-browserify": "^3.0.0",
    "stream-http": "^3.2.0",
    "ts-loader": "^9.5.1",
    "typescript": "^5.5.4",
    "url": "^0.11.4",
    "util": "^0.12.5",
    "vite": "^7.1.1",
    "vite-plugin-dts": "^4.5.4",
    "vite-plugin-node-polyfills": "^0.24.0",
    "vite-plugin-string-replace": "^1.1.5"
  },
  "scripts": {
    "clean": "rimraf dist",
    "build:es": "BUILD_FORMAT=es vite build",
    "build:umd": "BUILD_FORMAT=umd vite build",
    "build:cjs": "node scripts/generate-cjs-stub.mjs",
    "build": "pnpm run clean && pnpm run build:umd && pnpm run build:es && pnpm run build:cjs",
    "build:ts": "tsc --emitDeclarationOnly --project tsconfig.json",
    "prepublish": "pnpm run build",
    "release": "pnpm publish --access public",
    "release:canary": "pnpm publish --access public --tag canary"
  }
}