@hyperlane-xyz/utils
Version:
General utilities and types for the Hyperlane network
95 lines • 2.25 kB
JSON
{
"name": "@hyperlane-xyz/utils",
"version": "42.0.0",
"description": "General utilities and types for the Hyperlane network",
"keywords": [
"Hyperlane",
"Typescript",
"Utilities"
],
"homepage": "https://www.hyperlane.xyz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperlane-xyz/hyperlane-monorepo"
},
"files": [
"/dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"fs": [
"./dist/fs/index.d.ts"
],
"anvil": [
"./dist/anvil/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./fs": {
"types": "./dist/fs/index.d.ts",
"default": "./dist/fs/index.js"
}
},
"dependencies": {
"@cosmjs/encoding": "^0.32.4",
"@ethersproject/bytes": "*",
"@ethersproject/units": "*",
"@solana/web3.js": "^1.98.4",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.1",
"bs58": "^6.0.0",
"ethers": "^5.8.0",
"lodash-es": "^4.17.21",
"pino": "^8.19.0",
"starknet": "^7.4.0",
"yaml": "2.4.5"
},
"devDependencies": {
"@types/bs58": "^5.0.0",
"@types/chai": "^4.3.11",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.1",
"@types/node": "^26.1.2",
"@types/sinon": "^17.0.1",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.5.0",
"mocha": "^11.7.6",
"sinon": "^13.0.2",
"typescript": "npm:@typescript/typescript6@6.0.2",
"@hyperlane-xyz/tsconfig": "^42.0.0"
},
"peerDependencies": {
"@google-cloud/pino-logging-gcp-config": "^1.3.5",
"pino-pretty": "^13.0.0"
},
"peerDependenciesMeta": {
"@google-cloud/pino-logging-gcp-config": {
"optional": true
},
"pino-pretty": {
"optional": true
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./dist",
"check": "tsc --noEmit",
"lint": "oxlint -c ../../oxlint.json",
"format": "oxfmt --write ./src",
"test": "mocha --config .mocharc.json './src/**/*.test.ts'",
"test:ci": "pnpm test"
}
}