{
  "name": "@hyperlane-xyz/registry",
  "version": "25.5.0",
  "description": "A collection of configs, artifacts, and schemas for Hyperlane",
  "keywords": [
    "Chains",
    "Deployments",
    "Hyperlane",
    "Registry"
  ],
  "homepage": "https://www.hyperlane.xyz",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/hyperlane-xyz/hyperlane-registry"
  },
  "files": [
    "/dist"
  ],
  "type": "module",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "chains/*": [
        "./dist/chains/*/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": "./dist/index.js",
    "./chains/schema.json": "./dist/chains/schema.json",
    "./chains/*": "./dist/chains/*",
    "./fs": "./dist/fs/index.js"
  },
  "dependencies": {
    "jszip": "^3.10.1",
    "pino": "^8.21.0",
    "yaml": "2.9.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.1",
    "@faker-js/faker": "^10.5.0",
    "@hyperlane-xyz/sdk": "41.0.0",
    "@hyperlane-xyz/utils": "41.0.0",
    "@types/chai-as-promised": "^8.0.2",
    "@types/mocha": "^10.0.10",
    "@types/node": "^26.1.2",
    "chai": "^6.2.2",
    "chai-as-promised": "^8.0.2",
    "dotenv": "^17.4.2",
    "husky": "^9.1.7",
    "lint-staged": "^17.2.0",
    "mocha": "^11.7.6",
    "oxfmt": "0.62.0",
    "oxlint": "1.77.0",
    "randexp": "^0.5.3",
    "sinon": "^22.1.0",
    "svgo": "4.0.2",
    "tsx": "^4.23.1",
    "typescript": "7.0.2",
    "zod-to-json-schema": "^3.25.2"
  },
  "engines": {
    "node": ">=24"
  },
  "scripts": {
    "build": "tsx ./scripts/build.ts && tsc --project tsconfig.publish.json",
    "clean": "rm -rf ./dist ./tmp",
    "lint": "oxlint ./src/",
    "lint:fix": "oxlint --fix ./src/",
    "format": "oxfmt ./chains ./deployments ./src",
    "release": "pnpm run build && pnpm exec changeset publish",
    "test:unit": "pnpm run build && mocha --require dotenv/config --config .mocharc.json './test/unit/*.test.ts' --exit",
    "test:health": "pnpm run build && mocha --config .mocharc.json './test/health/*.test.ts' --exit --parallel",
    "test:rpc-health-mainnet": "pnpm run build && mocha --config .mocharc.json './test/health/rpc-health.test.ts' --grep 'Mainnets' --exit --parallel",
    "test:rpc-health-testnet": "pnpm run build && mocha --config .mocharc.json './test/health/rpc-health.test.ts' --grep 'Testnets' --exit --parallel",
    "version:prepare": "pnpm exec changeset version && pnpm install --no-frozen-lockfile",
    "version:check": "pnpm exec changeset status"
  }
}