{
  "name": "@hyperlane-xyz/relayer",
  "version": "4.0.2",
  "description": "Hyperlane Message Relayer Service",
  "keywords": [
    "blockchain",
    "hyperlane",
    "interchain",
    "message",
    "relayer"
  ],
  "license": "Apache-2.0",
  "author": "Abacus Works, Inc.",
  "repository": {
    "type": "git",
    "url": "https://github.com/hyperlane-xyz/hyperlane-monorepo"
  },
  "files": [
    "dist",
    "src"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "metadata": [
        "./dist/metadata/index.d.ts"
      ],
      "fs": [
        "./dist/fs/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./metadata": {
      "types": "./dist/metadata/index.d.ts",
      "default": "./dist/metadata/index.js"
    },
    "./fs": {
      "types": "./dist/fs/index.d.ts",
      "default": "./dist/fs/index.js"
    }
  },
  "dependencies": {
    "@arbitrum/sdk": "^4.0.0",
    "@google-cloud/pino-logging-gcp-config": "^1.3.5",
    "@hyperlane-xyz/registry": "26.1.0",
    "ethers": "^5.8.0",
    "pino": "^8.19.0",
    "pino-pretty": "^13.0.0",
    "prom-client": "^14.0.1",
    "yaml": "2.4.5",
    "zod": "^4.5.4",
    "@hyperlane-xyz/core": "12.1.0",
    "@hyperlane-xyz/metrics": "1.0.2",
    "@hyperlane-xyz/sdk": "44.0.2",
    "@hyperlane-xyz/utils": "44.0.2"
  },
  "devDependencies": {
    "@ethersproject/providers": "*",
    "@nomiclabs/hardhat-ethers": "^2.2.3",
    "@nomiclabs/hardhat-waffle": "^2.0.6",
    "@types/chai": "^4.3.11",
    "@types/chai-as-promised": "^8",
    "@types/mocha": "^10.0.1",
    "@types/node": "^26.1.2",
    "@types/sinon": "^17.0.1",
    "@vercel/ncc": "^0.38.3",
    "chai": "^4.5.0",
    "chai-as-promised": "^8.0.1",
    "ethereum-waffle": "^4.0.10",
    "hardhat": "^2.22.2",
    "mocha": "^11.7.6",
    "oxfmt": "^0.62.0",
    "sinon": "^13.0.2",
    "tsx": "^4.23.1",
    "typescript": "npm:@typescript/typescript6@6.0.2",
    "@hyperlane-xyz/tsconfig": "^44.0.2"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsc",
    "bundle": "rm -rf ./bundle && ncc build ./dist/fs/service.js -o bundle -e @google-cloud/pino-logging-gcp-config && node ../../scripts/ncc.post-bundle.mjs",
    "clean": "rm -rf dist cache bundle",
    "dev": "tsc --watch",
    "lint": "oxlint -c ../../oxlint.json",
    "format": "oxfmt --write ./src",
    "test": "pnpm test:unit && pnpm test:hardhat",
    "test:ci": "pnpm test",
    "test:unit": "mocha --config .mocharc.json './src/**/*.test.ts' --exit",
    "test:hardhat": "NODE_OPTIONS='--import tsx/esm' hardhat --config hardhat.config.cts test $(find ./src -name \"*.hardhat-test.ts\")",
    "start": "node dist/fs/service.js",
    "start:dev": "tsx src/fs/service.ts"
  }
}