@ledgerhq/coin-tron
Version:
Ledger Tron Coin integration
151 lines • 4.58 kB
JSON
{
"name": "@ledgerhq/coin-tron",
"version": "6.1.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": {
"@ledgerhq/source": "./src/bridge/index.ts",
"require": "./lib/bridge/index.js",
"default": "./lib-es/bridge/index.js"
},
"./deviceTransactionConfig": {
"@ledgerhq/source": "./src/bridge/deviceTransactionConfig.ts",
"require": "./lib/bridge/deviceTransactionConfig.js",
"default": "./lib-es/bridge/deviceTransactionConfig.js"
},
"./network": {
"@ledgerhq/source": "./src/network/index.ts",
"require": "./lib/network/index.js",
"default": "./lib-es/network/index.js"
},
"./signer": {
"@ledgerhq/source": "./src/signer/index.ts",
"require": "./lib/signer/index.js",
"default": "./lib-es/signer/index.js"
},
"./specs": {
"@ledgerhq/source": "./src/test/bot-specs.ts",
"require": "./lib/test/bot-specs.js",
"default": "./lib-es/test/bot-specs.js"
},
"./transaction": {
"@ledgerhq/source": "./src/bridge/transaction.ts",
"require": "./lib/bridge/transaction.js",
"default": "./lib-es/bridge/transaction.js"
},
"./*": {
"@ledgerhq/source": "./src/*.ts",
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/coin-module-framework": "3.0.0",
"bignumber.js": "^9.1.2",
"bs58check": "^2.1.2",
"expect": "30.2.0",
"invariant": "^2.2.2",
"lodash": "^4.17.21",
"rxjs": "7.8.2",
"tronweb": "6.2.0",
"@ledgerhq/cryptoassets": "^13.49.0",
"@ledgerhq/devices": "8.14.2",
"@ledgerhq/errors": "^6.35.0",
"@ledgerhq/ledger-wallet-framework": "^1.6.0",
"@ledgerhq/live-network": "^2.6.2",
"@ledgerhq/live-promise": "^0.2.3",
"@ledgerhq/logs": "^6.17.0",
"@ledgerhq/types-live": "^6.109.0"
},
"devDependencies": {
"@swc/core": "1.15.11",
"@swc/jest": "0.2.39",
"@types/bs58check": "^2.1.2",
"@types/invariant": "^2.2.2",
"@types/jest": "30.0.0",
"@types/lodash": "^4.14.191",
"@types/node": "24.12.0",
"dotenv": "^16.4.5",
"jest": "30.2.0",
"msw": "^2.7.3",
"oxfmt": "0.36.0",
"oxlint": "1.51.0",
"typescript": "6.0.2",
"@ledgerhq/disable-network-setup": "^0.3.0",
"@ledgerhq/types-cryptoassets": "^7.37.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
"coverage": "jest --coverage",
"prewatch": "pnpm build",
"watch": "tsc --watch --project tsconfig.build.json",
"watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "oxlint src",
"lint:fix": "oxfmt src && oxlint src --fix --quiet",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js --passWithNoTests",
"test-integ:debug": "DOTENV_CONFIG_PATH=.env.integ.test node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config=jest.integ.config.js",
"unimported": "unimported",
"format": "oxfmt src",
"format:check": "oxfmt src --check"
}
}