{
  "name": "@rainbow-me/delegation",
  "version": "0.3.2",
  "description": "EIP-7702 batch transaction executor with smart delegation detection",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --clean",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "lint": "eslint --cache --max-warnings 0 src/ test/",
    "lint:circular": "madge --circular --ts-config tsconfig.json --extensions ts,tsx src/",
    "format": "yarn prettier --write .",
    "test": "NODE_OPTIONS='--no-deprecation' vitest run",
    "typecheck": "tsc --noEmit",
    "prepack": "yarn build",
    "changeset": "changeset",
    "release": "yarn release:verify-git && yarn release:publish && yarn release:github",
    "release:verify-git": "git diff --exit-code && git rev-parse --abbrev-ref HEAD | grep -q main",
    "release:publish": "changeset publish --tag latest && git push --follow-tags",
    "release:github": "TAG=$(git describe --tags --abbrev=0) && awk '/^## /{if(p++)exit;next}p' CHANGELOG.md | gh release create \"$TAG\" --notes-file -"
  },
  "keywords": [
    "ethereum",
    "eip-7702",
    "delegation",
    "batch-transactions",
    "account-abstraction",
    "Rainbow"
  ],
  "author": "Christopher Howard",
  "license": "GPL-3.0",
  "devDependencies": {
    "@changesets/cli": "^2.29.7",
    "@storesjs/stores": "^0.8.7",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/react": "^16.3.1",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/jsdom": "^27",
    "@types/node": "^22.15.24",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "@webext-core/fake-browser": "^1.3.4",
    "abitype": "^1.2.1",
    "eslint": "8.56.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-prettier": "5.1.3",
    "ethers": "^5.7.2",
    "jsdom": "^27.4.0",
    "madge": "^8.0.0",
    "msw": "^2.12.4",
    "prettier": "3.2.4",
    "prool": "^0.0.25",
    "react": "^19.2.3",
    "react-dom": "^19.2.3",
    "tsup": "^8.5.0",
    "typescript": "5.5.4",
    "viem": "2.38.0",
    "vitest": "^4.0.10"
  },
  "peerDependencies": {
    "@storesjs/stores": "^0.8.6",
    "ethers": "^5.7.0",
    "react": "^18 || ^19",
    "viem": "^2.38.0"
  },
  "peerDependenciesMeta": {
    "ethers": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rainbow-me/delegation"
  },
  "homepage": "https://github.com/rainbow-me/delegation#readme",
  "bugs": {
    "url": "https://github.com/rainbow-me/delegation/issues"
  },
  "packageManager": "yarn@4.2.2"
}
