@xchainjs/xchain-doge
Version:
Custom Doge client and utilities used by XChain clients
54 lines • 1.57 kB
JSON
{
"name": "@xchainjs/xchain-doge",
"version": "2.0.1",
"description": "Custom Doge client and utilities used by XChain clients",
"keywords": [
"Xchain",
"Doge"
],
"author": "XChainJS",
"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.js",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@ledgerhq/hw-app-btc": "10.1.0",
"@xchainjs/xchain-client": "2.0.1",
"@xchainjs/xchain-crypto": "1.0.0",
"@xchainjs/xchain-util": "2.0.0",
"@xchainjs/xchain-utxo": "2.0.1",
"@xchainjs/xchain-utxo-providers": "2.0.1",
"bitcoinjs-lib": "5.2.0",
"coinselect": "3.1.12"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "6.28.6",
"axios": "1.8.4",
"axios-mock-adapter": "1.20.0"
},
"publishConfig": {
"access": "public",
"directory": "release/package"
}
}