{
  "name": "@beefyfinance/blockchain-addressbook",
  "version": "0.59.15",
  "description": "A collection of useful addresses on various chains for defi development",
  "type": "module",
  "types": "./dist/address-book/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/address-book/index.d.ts",
        "default": "./dist/address-book/index.js"
      },
      "require": {
        "types": "./dist/address-book/index.d.cts",
        "default": "./dist/address-book/index.cjs"
      }
    },
    "./types/*": {
      "import": {
        "types": "./dist/types/*.d.ts",
        "default": "./dist/types/*.js"
      },
      "require": {
        "types": "./dist/types/*.d.cts",
        "default": "./dist/types/*.cjs"
      }
    },
    "./util/*": {
      "import": {
        "types": "./dist/util/*.d.ts",
        "default": "./dist/util/*.js"
      },
      "require": {
        "types": "./dist/util/*.d.cts",
        "default": "./dist/util/*.cjs"
      }
    },
    "./*": {
      "import": {
        "types": "./dist/address-book/*/index.d.ts",
        "default": "./dist/address-book/*/index.js"
      },
      "require": {
        "types": "./dist/address-book/*/index.d.cts",
        "default": "./dist/address-book/*/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/address-book/index.cjs",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "./dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beefyfinance/beefy-api.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "2.5.5",
    "@types/node": "^26.1.1",
    "tsdown": "^0.22.14",
    "tsx": "^4.23.1",
    "typescript": "6.0.3",
    "viem": "2.55.8"
  },
  "scripts": {
    "addChain": "tsx ./scripts/addChain.ts",
    "build": "tsdown",
    "checkAddresses": "tsx ./scripts/checkAddresses.ts",
    "checkDecimals": "tsx ./scripts/checkDecimals.ts",
    "checkOracles": "tsx ./scripts/checkOracles.ts",
    "checkDuplicates": "tsx ./scripts/checkDuplicates.ts",
    "submit": "pnpm -w exec tsx scripts/check-addresses.ts packages/address-book/src && pnpm run build && pnpm publish",
    "test": "pnpm run typecheck && pnpm run test:lint",
    "typecheck": "tsc --project tsconfig.json",
    "test:lint": "pnpm run lint",
    "lint": "biome check",
    "lint:fix": "biome check --fix"
  }
}