@xchainjs/xchain-thorchain
Version:
Custom Thorchain client and utilities used by XChainJS clients
61 lines • 1.91 kB
JSON
{
"name": "@xchainjs/xchain-thorchain",
"version": "3.0.18",
"description": "Custom Thorchain client and utilities used by XChainJS clients",
"keywords": [
"THORChain",
"XChain"
],
"author": "THORChain",
"homepage": "https://github.com/xchainjs/xchainjs-lib",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:xchainjs/xchainjs-lib.git"
},
"scripts": {
"clean": "rm -rf .turbo && rm -rf lib",
"build": "yarn clean && rollup -c --bundleConfigAsCjs",
"build:release": "yarn exec rm -rf release && yarn pack && yarn exec \"mkdir release && tar zxvf package.tgz --directory release && rm package.tgz\"",
"test": "jest",
"e2e": "jest --config jest.config.e2e.mjs",
"lint": "eslint --config ../../eslint.config.mjs \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"start:example": "ts-node example/index.ts",
"generate:ThorchainMsgs": "./genMsgs.sh"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@cosmjs/amino": "0.34.0",
"@cosmjs/crypto": "0.34.0",
"@cosmjs/encoding": "0.34.0",
"@cosmjs/math": "0.34.0",
"@cosmjs/proto-signing": "0.34.0",
"@cosmjs/stargate": "0.34.0",
"@ledgerhq/hw-transport": "^6.31.6",
"@scure/base": "^1.2.6",
"@scure/bip32": "^1.7.0",
"@xchainjs/ledger-thorchain": "^0.3.1",
"@xchainjs/xchain-client": "2.0.14",
"@xchainjs/xchain-cosmos-sdk": "2.0.14",
"@xchainjs/xchain-crypto": "1.0.6",
"@xchainjs/xchain-util": "2.0.7",
"axios": "1.16.1",
"bignumber.js": "^11.0.0",
"cosmjs-types": "0.9.0",
"protobufjs": "7.5.8"
},
"publishConfig": {
"access": "public",
"directory": "release/package"
}
}