UNPKG

@hyperlane-xyz/cli

Version:

A command-line utility for common Hyperlane operations

115 lines 3.92 kB
{ "name": "@hyperlane-xyz/cli", "version": "35.0.1", "description": "A command-line utility for common Hyperlane operations", "keywords": [ "CLI", "Deployment", "Hyperlane", "Permissionless", "Typescript" ], "homepage": "https://www.hyperlane.xyz", "license": "Apache-2.0", "repository": "https://github.com/hyperlane-xyz/hyperlane-monorepo", "bin": { "hyperlane": "./bundle/index.js" }, "files": [ "./bundle", "./examples", "package.json" ], "type": "module", "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "devDependencies": { "@aws-sdk/client-kms": "^3.577.0", "@aws-sdk/client-s3": "^3.577.0", "@cosmjs/proto-signing": "^0.32.4", "@cosmjs/stargate": "^0.32.4", "@ethersproject/abi": "*", "@ethersproject/constants": "*", "@ethersproject/providers": "*", "@hyperlane-xyz/registry": "24.3.0", "@inquirer/core": "9.0.10", "@inquirer/figures": "1.0.5", "@inquirer/prompts": "3.3.2", "@inquirer/search": "^3.0.1", "@inquirer/select": "^1.0.0", "@inquirer/type": "^1.0.0", "@solana/spl-token": "^0.4.9", "@solana/web3.js": "^1.98.4", "@types/chai": "^4.3.11", "@types/chai-as-promised": "^8", "@types/lodash-es": "^4.17.12", "@types/mocha": "^10.0.1", "@types/node": "^24.10.9", "@types/sinon": "^17.0.1", "@types/yargs": "^17.0.24", "@vercel/ncc": "^0.38.3", "ansi-escapes": "^7.0.0", "asn1.js": "^5.4.1", "bignumber.js": "^9.1.1", "chai": "^4.5.0", "chai-as-promised": "^8.0.1", "chalk": "^5.3.0", "ethers": "^5.8.0", "execa": "^9.5.3", "latest-version": "^8.0.0", "lodash-es": "^4.17.21", "mocha": "^11.5.0", "oxfmt": "^0.42.0", "pino": "^8.19.0", "prom-client": "^14.0.1", "sinon": "^13.0.2", "terminal-link": "^3.0.0", "testcontainers": "11.12.0", "tsx": "^4.19.1", "typescript": "6.0.2", "viem": "^2.21.45", "yaml": "2.4.5", "yargs": "^17.7.2", "zksync-ethers": "^5.10.0", "zod": "^3.21.2", "zod-validation-error": "^3.3.0", "zx": "^8.1.4", "@hyperlane-xyz/aleo-sdk": "35.0.1", "@hyperlane-xyz/deploy-sdk": "6.0.4", "@hyperlane-xyz/cosmos-sdk": "35.0.1", "@hyperlane-xyz/core": "11.3.1", "@hyperlane-xyz/http-registry-server": "35.0.1", "@hyperlane-xyz/provider-sdk": "6.0.4", "@hyperlane-xyz/rebalancer": "27.3.4", "@hyperlane-xyz/radix-sdk": "35.0.1", "@hyperlane-xyz/relayer": "1.1.32", "@hyperlane-xyz/sdk": "35.0.1", "@hyperlane-xyz/starknet-sdk": "28.0.9", "@hyperlane-xyz/tron-sdk": "23.0.9", "@hyperlane-xyz/sealevel-sdk": "35.0.1", "@hyperlane-xyz/utils": "35.0.1", "@hyperlane-xyz/tsconfig": "^35.0.1" }, "engines": { "node": ">=16" }, "scripts": { "hyperlane": "node ./dist/cli.js", "build": "pnpm version:update && NODE_OPTIONS='--max-old-space-size=4096' tsc", "bundle": "rm -rf ./bundle && ncc build ./dist/cli.js -o bundle && node ../../scripts/ncc.post-bundle.mjs", "dev": "pnpm version:update && tsc --watch", "clean": "rm -rf ./dist && rm -rf ./bundle", "lint": "oxlint -c ../../oxlint.json", "format": "oxfmt --write ./src ./examples", "test:ci": "mocha --config .mocharc.json", "test:ethereum:e2e": "./src/tests/ethereum/run-e2e-test.sh", "test:cross-chain:e2e": "./src/tests/cross-chain/run-e2e-test.sh", "test:cosmosnative:e2e": "./src/tests/cosmosnative/run-e2e-test.sh", "test:radix:e2e": "./src/tests/radix/run-e2e-test.sh", "test:aleo:e2e": "./src/tests/aleo/run-e2e-test.sh", "test:sealevel:e2e": "./src/tests/sealevel/run-e2e-test.sh", "test:starknet:e2e": "./src/tests/starknet/run-e2e-test.sh", "test:tron:e2e": "./src/tests/ethereum/run-tron-e2e-test.sh", "version:update": "echo \"export const VERSION = '$npm_package_version';\" > src/version.ts" } }