@ledgerhq/coin-tron
Version:
Ledger Tron Coin integration
137 lines • 3.72 kB
JSON
{
"name": "@ledgerhq/coin-tron",
"version": "0.7.0",
"description": "Ledger Tron Coin integration",
"keywords": [
"Ledger",
"LedgerWallet",
"trx",
"Tron",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledger-live.git"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledger-live/issues"
},
"homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/coin-modules/coin-tron",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"lib/*": [
"lib/*"
],
"lib-es/*": [
"lib-es/*"
],
"bridge": [
"lib/bridge/index"
],
"deviceTransactionConfig": [
"lib/bridge/deviceTransactionConfig"
],
"network": [
"lib/network/index"
],
"specs": [
"lib/test/bot-specs"
],
"signer": [
"lib/signer/index"
],
"transaction": [
"lib/bridge/transaction"
],
"types": [
"lib/types/index"
],
"*": [
"lib/*"
]
}
},
"exports": {
"./lib/*": "./lib/*.js",
"./lib-es/*": "./lib-es/*.js",
"./bridge": {
"require": "./lib/bridge/index.js",
"default": "./lib-es/bridge/index.js"
},
"./deviceTransactionConfig": {
"require": "./lib/bridge/deviceTransactionConfig.js",
"default": "./lib-es/bridge/deviceTransactionConfig.js"
},
"./network": {
"require": "./lib/network/index.js",
"default": "./lib-es/network/index.js"
},
"./signer": {
"require": "./lib/signer/index.js",
"default": "./lib-es/signer/index.js"
},
"./specs": {
"require": "./lib/test/bot-specs.js",
"default": "./lib-es/bridge/transaction.js"
},
"./transaction": {
"require": "./lib/bridge/transaction.js",
"default": "./lib-es/bridge/transaction.js"
},
"./*": {
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"dependencies": {
"bignumber.js": "^9.1.2",
"bs58check": "^2.1.2",
"expect": "^27.4.6",
"invariant": "^2.2.2",
"lodash": "^4.17.21",
"rxjs": "^7.8.1",
"tronweb": "^5.3.2",
"@ledgerhq/coin-framework": "^2.5.0",
"@ledgerhq/cryptoassets": "^13.14.0",
"@ledgerhq/devices": "8.4.4",
"@ledgerhq/errors": "^6.19.1",
"@ledgerhq/live-network": "^2.0.6",
"@ledgerhq/live-promise": "^0.1.0",
"@ledgerhq/logs": "^6.12.0",
"@ledgerhq/types-cryptoassets": "^7.21.0",
"@ledgerhq/types-live": "^6.65.0"
},
"devDependencies": {
"@agrozyme/types-tronweb": "^5.3.2",
"@types/bs58check": "^2.1.0",
"@types/invariant": "^2.2.2",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.191",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"msw": "^2.2.13",
"ts-jest": "^29.1.1",
"jest-sonar": "0.2.16",
"typescript": "^5.4.5",
"@ledgerhq/types-cryptoassets": "^7.21.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
"coverage": "jest --coverage || true",
"prewatch": "pnpm build",
"watch": "tsc --watch",
"watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js",
"unimported": "unimported"
}
}