{
  "name": "@shazow/whatsabi",
  "version": "0.26.0",
  "description": "Resolve proxies and get an ABI from Ethereum bytecode, even if it's unverified",
  "type": "module",
  "scripts": {
    "test": "vitest run",
    "build:cjs": "tsc --project tsconfig.cjs.json && cp package.cjs.json lib.cjs/package.json",
    "build:esm": "tsc --project tsconfig.esm.json && cp package.esm.json lib.esm/package.json",
    "build:types": "tsc --project tsconfig.types.json",
    "build:docs": "typedoc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shazow/whatsabi.git"
  },
  "keywords": [
    "ethereum",
    "evm",
    "abi"
  ],
  "author": "Andrey Petrov <shazow.net>",
  "license": "MIT",
  "files": [
    "lib.esm/",
    "lib.cjs/",
    "lib.types/",
    "src/",
    "examples/",
    "package.json",
    "README.md",
    "LICENSE",
    "*config.*"
  ],
  "bugs": {
    "url": "https://github.com/shazow/whatsabi/issues"
  },
  "homepage": "https://github.com/shazow/whatsabi#readme",
  "dependencies": {
    "ox": "^0.9.17"
  },
  "peerDependencies": {
    "@noble/hashes": "^2.0.1"
  },
  "devDependencies": {
    "@size-limit/esbuild-why": "^8.2.6",
    "@size-limit/preset-small-lib": "^8.2.6",
    "@types/node": "^24.10.13",
    "ethers": "^6.16.0",
    "npm": "^10.9.4",
    "size-limit": "^8.2.6",
    "tsx": "^4.21.0",
    "typedoc": "^0.26.11",
    "typedoc-plugin-missing-exports": "^3.1.0",
    "viem": "^2.45.3",
    "vitest": "^0.34.6",
    "web3": "^4.16.0"
  },
  "main": "./lib.cjs/index.js",
  "module": "./lib.esm/index.js",
  "types": "./lib.types/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib.types/index.d.ts",
      "import": "./lib.esm/index.js",
      "default": "./lib.cjs/index.js"
    }
  }
}
