@ledgerhq/coin-stellar
Version:
Ledger Stellar Coin integration
149 lines • 4.19 kB
JSON
{
"name": "@ledgerhq/coin-stellar",
"version": "5.4.0",
"description": "Ledger Stellar Coin integration",
"license": "Apache-2.0",
"keywords": [
"Ledger",
"LedgerWallet",
"Stellar",
"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-stellar",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"lib/*": [
"lib/*"
],
"lib-es/*": [
"lib-es/*"
],
"api": [
"lib/api/index"
],
"deviceTransactionConfig": [
"lib/bridge/deviceTransactionConfig"
],
"logic": [
"lib/logic/index"
],
"specs": [
"lib/test/bot-specs"
],
"transaction": [
"lib/bridge/transaction"
],
"types": [
"lib/types/index"
],
"*": [
"lib/*",
"lib/bridge/*",
"lib/logic/*",
"lib/signer/*",
"lib/test/*",
"lib/types/*"
]
}
},
"exports": {
"./lib/*": "./lib/*.js",
"./lib-es/*": "./lib-es/*.js",
"./api": {
"require": "./lib/api/index.js",
"default": "./lib-es/api/index.js"
},
"./deviceTransactionConfig": {
"require": "./lib/bridge/deviceTransactionConfig.js",
"default": "./lib-es/bridge/deviceTransactionConfig.js"
},
"./errors": {
"require": "./lib/types/errors.js",
"default": "./lib-es/types/errors.js"
},
"./logic": {
"require": "./lib/logic/index.js",
"default": "./lib-es/logic/index.js"
},
"./signer": {
"require": "./lib/signer/index.js",
"default": "./lib-es/signer/index.js"
},
"./specs": {
"require": "./lib/test/bot-specs.js",
"default": "./lib-es/test/bot-specs.js"
},
"./transaction": {
"require": "./lib/bridge/transaction.js",
"default": "./lib-es/bridge/transaction.js"
},
"./types": {
"require": "./lib/types/index.js",
"default": "./lib-es/types/index.js"
},
"./*": {
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
".": {
"require": "./lib/index.js",
"default": "./lib-es/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@stellar/stellar-sdk": "^11.3.0",
"bignumber.js": "^9.1.2",
"expect": "^27.4.6",
"invariant": "^2.2.2",
"rxjs": "^7.8.1",
"@exodus/patch-broken-hermes-typed-arrays": "1.0.0-alpha.1",
"@ledgerhq/coin-framework": "^5.8.0",
"@ledgerhq/cryptoassets": "^13.23.0",
"@ledgerhq/devices": "8.4.8",
"@ledgerhq/errors": "^6.23.0",
"@ledgerhq/live-env": "^2.12.0",
"@ledgerhq/live-network": "^2.0.13",
"@ledgerhq/logs": "^6.13.0",
"@ledgerhq/types-cryptoassets": "^7.24.0",
"@ledgerhq/types-live": "^6.79.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/invariant": "^2.2.2",
"@types/jest": "^29.5.10",
"@types/node": "^22.10.10",
"jest": "^29.7.0",
"msw": "^2.7.3",
"nock": "14.0.2",
"ts-jest": "^29.1.1",
"@ledgerhq/disable-network-setup": "^0.0.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:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test-integ": "jest --config=jest.integ.config.js",
"test-integ:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config=jest.integ.config.js",
"typecheck": "tsc --noEmit",
"unimported": "unimported"
}
}