{
  "name": "@openfort/openfort-js",
  "version": "1.5.0",
  "author": "Openfort (https://www.openfort.io)",
  "bugs": "https://github.com/openfort-xyz/openfort-js/issues",
  "repository": "openfort-xyz/openfort-js.git",
  "keywords": [
    "Openfort",
    "Openfort.js"
  ],
  "license": "MIT",
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@ethersproject/abi": "^5.8.0",
    "@ethersproject/bytes": "^5.8.0",
    "@ethersproject/hash": "^5.8.0",
    "@ethersproject/keccak256": "^5.8.0",
    "@ethersproject/providers": "^5.8.0",
    "@ethersproject/transactions": "^5.8.0",
    "@openfort/shield-js": "^0.1.36",
    "@sentry/browser": "^9.47.1",
    "@sentry/core": "^9.47.1",
    "axios": "^1.15.0",
    "axios-retry": "^4.5.0",
    "eventemitter3": "5.0.1",
    "human-id": "^4.1.3"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/sdk/src/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/cjs/sdk/src/index.cjs"
      }
    }
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.8",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^15.3.1",
    "@rollup/plugin-replace": "^5.0.7",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/node": "^22.19.17",
    "@vitest/coverage-v8": "^4.1.8",
    "jsdom": "^25.0.1",
    "rollup": "^4.60.1",
    "rollup-plugin-dts": "^5.3.1",
    "rollup-plugin-visualizer": "^5.14.0",
    "typescript": "^5.9.3",
    "vite-tsconfig-paths": "6.1.1",
    "vitest": "^4.1.8",
    "@openfort/openapi-clients": "0.0.1"
  },
  "main": "./dist/cjs/sdk/src/index.cjs",
  "module": "./dist/sdk/src/index.js",
  "type": "module",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "test": "pnpm check && pnpm test:unit",
    "test:unit": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "packageList": "./scripts/generate-package-list.sh",
    "dev": "NODE_ENV=development pnpm rollup --config rollup.config.js --watch",
    "check": "biome check --write src",
    "format": "biome format --write src",
    "build": "pnpm packageList && node copyVersion.cjs && NODE_ENV=production pnpm rollup --config rollup.config.js && rm -rf dist/types && cp dist/index.d.ts dist/index.d.cts",
    "stats": "open ./stats.html"
  }
}