{
  "name": "@roninbuilders/contracts",
  "version": "0.6.24",
  "description": "Verified smart contract ABIs and addresses for the Ronin Network blockchain. TypeScript-ready with optimized bundle size.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "abitype": "^1.0.8",
    "p-queue": "^7.4.1",
    "typescript": "^5.8.3"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@types/bun": "^1.2.8",
    "ethers": "^6.13.5",
    "tsup": "^8.4.0",
    "viem": "^2.25.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/roninbuilders/contracts.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "ronin",
    "axie",
    "blockchain",
    "smart-contracts",
    "abi",
    "viem",
    "ethers",
    "typescript",
    "javascript",
    "web3",
    "axie-infinity",
    "addresses"
  ],
  "engines": {
    "node": ">=18"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.js",
      "require": "./dist/*.cjs"
    }
  },
  "license": "MIT",
  "scripts": {
    "build": "NODE_OPTIONS='--max-old-space-size=8192' tsup",
    "generate-contracts": "bun src/generate-contracts.ts",
    "test": "bun test",
    "test:ethers": "bun test test/ethers.test.ts",
    "test:viem": "bun test test/viem.test.ts",
    "typecheck": "NODE_OPTIONS='--max-old-space-size=16384' tsc --noEmit --skipLibCheck",
    "format": "biome format . --write",
    "format:check": "biome ci .",
    "generate-index": "bun run src/generate-index.ts"
  }
}