@ledgerhq/coin-celo
Version:
157 lines • 4.65 kB
JSON
{
"name": "@ledgerhq/coin-celo",
"version": "1.1.13",
"description": "celo coin integration",
"keywords": [
"Ledger",
"LedgerWallet",
"Celo",
"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-celo",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"lib/*": [
"lib/*"
],
"lib-es/*": [
"lib-es/*"
],
"deviceTransactionConfig": [
"lib/bridge/deviceTransactionConfig"
],
"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"
},
"./transaction": {
"require": "./lib/bridge/transaction.js",
"default": "./lib-es/bridge/transaction.js"
},
"./cli-transaction": {
"require": "./lib/test/cli-transaction.js",
"default": "./lib-es/test/cli-transaction.js"
},
"./hw-getAddress": {
"require": "./lib/signer/hw-getAddress.js",
"default": "./lib-es/signer/hw-getAddress.js"
},
"./preload": {
"require": "./lib/bridge/preload.js",
"default": "./lib-es/bridge/preload.js"
},
"./deviceTransactionConfig": {
"require": "./lib/bridge/deviceTransactionConfig.js",
"default": "./lib-es/bridge/deviceTransactionConfig.js"
},
"./types": {
"require": "./lib/types/index.js",
"default": "./lib-es/types/index.js"
},
"./bridge": {
"require": "./lib/bridge/index.js",
"default": "./lib-es/bridge/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"
},
"./*": {
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
".": {
"require": "./lib/index.js",
"default": "./lib-es/index.js"
},
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"dependencies": {
"@celo/connect": "^6.0.2",
"@celo/contractkit": "^8.3.1",
"@celo/utils": "^7.0.0",
"@celo/wallet-base": "^6.0.3",
"@celo/wallet-ledger": "^6.0.3",
"bignumber.js": "^9.1.2",
"eip55": "^2.1.1",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"rxjs": "^7.8.1",
"@ledgerhq/coin-evm": "^2.25.0",
"@ledgerhq/coin-framework": "^5.8.0",
"@ledgerhq/cryptoassets": "^13.23.0",
"@ledgerhq/devices": "^8.4.8",
"@ledgerhq/errors": "^6.23.0",
"@ledgerhq/hw-app-eth": "^6.45.13",
"@ledgerhq/live-config": "^3.1.0",
"@ledgerhq/live-env": "^2.12.0",
"@ledgerhq/live-network": "^2.0.13",
"@ledgerhq/logs": "^6.13.0",
"@ledgerhq/types-live": "^6.79.0"
},
"devDependencies": {
"@types/invariant": "^2.2.37",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.179",
"dotenv": "^16.4.5",
"expect": "^27.4.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5",
"@ledgerhq/disable-network-setup": "^0.0.0",
"@ledgerhq/types-cryptoassets": "^7.24.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
"coverage": "jest --coverage --testPathIgnorePatterns='/bridge.integration.test.ts|node_modules|lib-es|lib/' --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-celo.json",
"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": "jest --config=jest.integ.config.js --passWithNoTests",
"test-integ:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config=jest.integ.config.js",
"typecheck": "tsc --noEmit",
"unimported": "unimported"
}
}