UNPKG

@ledgerhq/coin-canton

Version:
162 lines 4.68 kB
{ "name": "@ledgerhq/coin-canton", "version": "0.33.0", "description": "Canton coin integration", "keywords": [ "Ledger", "LedgerWallet", "canton", "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-canton", "publishConfig": { "access": "public" }, "typesVersions": { "*": { "lib/*": [ "lib/*" ], "lib-es/*": [ "lib-es/*" ], "api": [ "lib/api/index" ], "deviceTransactionConfig": [ "lib/bridge/deviceTransactionConfig" ], "common-logic": [ "lib/common-logic/index" ], "specs": [ "lib/test/bot-specs" ], "transaction": [ "lib/bridge/transaction" ], "types": [ "lib/types/index" ], "*": [ "lib/*", "lib/bridge/*", "lib/common-logic/*", "lib/signer/*", "lib/test/*", "lib/types/*" ], "errors": [ "./src/errors.ts" ] } }, "exports": { "./errors": { "@ledgerhq/source": "./src/errors.ts", "require": "./lib/errors.js", "default": "./lib-es/errors.js" }, "./lib/*": "./lib/*.js", "./lib-es/*": "./lib-es/*.js", "./api": { "@ledgerhq/source": "./src/api/index.ts", "require": "./lib/api/index.js", "default": "./lib-es/api/index.js" }, "./deviceTransactionConfig": { "@ledgerhq/source": "./src/bridge/deviceTransactionConfig.ts", "require": "./lib/bridge/deviceTransactionConfig.js", "default": "./lib-es/bridge/deviceTransactionConfig.js" }, "./logic": { "require": "./lib/logic/index.js", "default": "./lib-es/logic/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" }, "./types": { "@ledgerhq/source": "./src/types/index.ts", "require": "./lib/types/index.js", "default": "./lib-es/types/index.js" }, "./*": { "@ledgerhq/source": "./src/*.ts", "require": "./lib/*.js", "default": "./lib-es/*.js" }, ".": { "@ledgerhq/source": "./src/index.ts", "require": "./lib/index.js", "default": "./lib-es/index.js" }, "./package.json": "./package.json" }, "license": "Apache-2.0", "dependencies": { "@ledgerhq/coin-module-framework": "5.0.0", "@ledgerhq/logs": "6.17.0", "bignumber.js": "^9.1.2", "invariant": "^2.2.4", "rxjs": "7.8.2", "@ledgerhq/devices": "8.17.0", "@ledgerhq/hw-app-canton": "^0.12.6", "@ledgerhq/ledger-wallet-framework": "^2.8.0", "@ledgerhq/live-env": "^3.0.0", "@ledgerhq/live-network": "^3.0.0", "@ledgerhq/types-live": "^6.119.0" }, "devDependencies": { "@swc/core": "1.15.11", "@swc/jest": "0.2.39", "@types/invariant": "^2.2.37", "@types/jest": "30.0.0", "@types/node": "24.12.0", "dotenv": "^16.4.5", "expect": "30.2.0", "jest": "30.2.0", "oxfmt": "0.36.0", "oxlint": "1.51.0", "protobufjs-cli": "1.1.2", "typescript": "npm:@typescript/typescript6@^6.0.2", "@ledgerhq/disable-network-setup": "^0.3.0", "@ledgerhq/wallet-framework-test-setup": "^0.1.5" }, "scripts": { "clean": "rimraf lib lib-es", "generate-proto": "node scripts/generate.js", "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", "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-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js --passWithNoTests", "typecheck": "tsc --noEmit --customConditions node", "unimported": "unimported", "format": "oxfmt src", "format:check": "oxfmt src --check" } }