{
  "name": "@hyperlane-xyz/registry",
  "version": "25.1.0",
  "description": "A collection of configs, artifacts, and schemas for Hyperlane",
  "keywords": [
    "Chains",
    "Deployments",
    "Hyperlane",
    "Registry"
  ],
  "homepage": "https://www.hyperlane.xyz",
  "license": "MIT",
  "repository": "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",
    "yaml": "2.4.5",
    "zod": "^3.21.2"
  },
  "devDependencies": {
    "@changesets/cli": "^2.26.2",
    "@faker-js/faker": "^9.6.0",
    "@hyperlane-xyz/sdk": "34.0.0",
    "@hyperlane-xyz/utils": "34.0.0",
    "@types/chai-as-promised": "^8",
    "@types/mocha": "^10.0.1",
    "@types/node": "^24.10.9",
    "chai": "^5.1.2",
    "chai-as-promised": "^8.0.1",
    "dotenv": "^16.4.7",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.2",
    "mocha": "^10.2.0",
    "oxfmt": "0.42.0",
    "oxlint": "1.57.0",
    "pino": "^8.20.0",
    "randexp": "^0.5.3",
    "sinon": "^18.0.0",
    "svgo": "3.3.2",
    "tsx": "^4.7.1",
    "typescript": "6.0.2",
    "zod-to-json-schema": "^3.22.5"
  },
  "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"
  }
}