{
  "name": "@hyperlane-xyz/rebalancer",
  "version": "27.3.4",
  "description": "Hyperlane Warp Route Collateral Rebalancer Service",
  "keywords": [
    "blockchain",
    "collateral",
    "hyperlane",
    "interchain",
    "rebalancer",
    "warp-route"
  ],
  "license": "Apache-2.0",
  "author": "Abacus Works, Inc.",
  "repository": "https://github.com/hyperlane-xyz/hyperlane-monorepo",
  "bin": {
    "hyperlane-rebalancer": "./dist/service.js"
  },
  "files": [
    "dist",
    "src"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@google-cloud/pino-logging-gcp-config": "^1.3.0",
    "@hyperlane-xyz/registry": "24.3.0",
    "@inquirer/prompts": "3.3.2",
    "@inquirer/select": "^1.0.0",
    "@lifi/sdk": "^3.15.4",
    "@solana/web3.js": "^1.98.4",
    "bignumber.js": "^9.1.1",
    "bs58": "^6.0.0",
    "ethers": "^5.8.0",
    "express": "^5.1.0",
    "pino": "^8.19.0",
    "pino-pretty": "^13.0.0",
    "prom-client": "^14.0.1",
    "uuid": "^10.0.0",
    "viem": "^2.21.45",
    "yaml": "2.4.5",
    "zod": "^3.21.2",
    "zod-validation-error": "^3.3.0",
    "@hyperlane-xyz/core": "11.3.1",
    "@hyperlane-xyz/metrics": "0.2.25",
    "@hyperlane-xyz/provider-sdk": "6.0.4",
    "@hyperlane-xyz/sdk": "35.0.1",
    "@hyperlane-xyz/utils": "35.0.1"
  },
  "devDependencies": {
    "@ethersproject/constants": "*",
    "@types/chai": "^4.3.11",
    "@types/chai-as-promised": "^8",
    "@types/express": "^5.0.3",
    "@types/mocha": "^10.0.1",
    "@types/node": "^24.10.9",
    "@types/sinon": "^17.0.1",
    "@types/uuid": "^10.0.0",
    "@vercel/ncc": "^0.38.3",
    "chai": "^4.5.0",
    "chai-as-promised": "^8.0.1",
    "mocha": "^11.5.0",
    "oxfmt": "^0.42.0",
    "sinon": "^13.0.2",
    "testcontainers": "11.12.0",
    "tsx": "^4.19.1",
    "typescript": "6.0.2",
    "@hyperlane-xyz/relayer": "1.1.32",
    "@hyperlane-xyz/tsconfig": "^35.0.1"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc",
    "build:dist": "tsc -p tsconfig.build.json",
    "bundle": "pnpm build:dist && rm -rf ./bundle && ncc build ./dist/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": "mocha --config .mocharc.json './src/**/*.test.ts' --exit",
    "test:e2e": "mocha --config .mocharc.e2e.json",
    "test:e2e:ci": "sh -c 'mocha --config .mocharc.e2e.json \"src/e2e/*${REBALANCER_E2E_TEST}*.e2e-test.ts\" --exit'",
    "test:ci": "pnpm test",
    "start": "node dist/service.js",
    "start:dev": "tsx src/service.ts"
  }
}