@xchainjs/xchain-thorchain
Version:
Custom Thorchain client and utilities used by XChainJS clients
61 lines • 1.87 kB
JSON
{
"name": "@xchainjs/xchain-thorchain",
"version": "3.0.12",
"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 \"{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.33.1",
"@cosmjs/crypto": "0.33.1",
"@cosmjs/encoding": "0.33.1",
"@cosmjs/math": "0.33.1",
"@cosmjs/proto-signing": "0.33.1",
"@cosmjs/stargate": "0.33.1",
"@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.8",
"@xchainjs/xchain-cosmos-sdk": "2.0.8",
"@xchainjs/xchain-crypto": "1.0.6",
"@xchainjs/xchain-util": "2.0.4",
"axios": "1.8.4",
"bignumber.js": "^9.0.0",
"cosmjs-types": "0.9.0",
"protobufjs": "6.11.4"
},
"publishConfig": {
"access": "public",
"directory": "release/package"
}
}