{
  "name": "@ledgerhq/ledger-wallet-framework",
  "version": "3.0.0",
  "description": "Framework for Ledger Wallet",
  "keywords": [
    "Ledger",
    "LedgerWallet",
    "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/ledger-wallet-framework",
  "publishConfig": {
    "access": "public"
  },
  "typesVersions": {
    "*": {
      "lib/*": [
        "lib/*"
      ],
      "lib-es/*": [
        "lib-es/*"
      ],
      "account": [
        "lib/account/index"
      ],
      "currencies": [
        "lib/currencies/index"
      ],
      "serialization": [
        "lib/serialization/index"
      ],
      "errors": [
        "lib/errors"
      ],
      "*": [
        "lib/*"
      ]
    }
  },
  "exports": {
    "./errors": {
      "@ledgerhq/source": "./src/errors.ts",
      "require": "./lib/errors.js",
      "default": "./lib-es/errors.js"
    },
    "./lib/*": "./lib/*.js",
    "./lib-es/*": "./lib-es/*.js",
    "./account": {
      "@ledgerhq/source": "./src/account/index.ts",
      "require": "./lib/account/index.js",
      "default": "./lib-es/account/index.js"
    },
    "./bridge": {
      "@ledgerhq/source": "./src/bridge/index.ts",
      "require": "./lib/bridge/index.js",
      "default": "./lib-es/bridge/index.js"
    },
    "./currencies": {
      "@ledgerhq/source": "./src/currencies/index.ts",
      "require": "./lib/currencies/index.js",
      "default": "./lib-es/currencies/index.js"
    },
    "./nft/*": {
      "@ledgerhq/source": "./src/nft/*.ts",
      "require": "./lib/nft/*.js",
      "default": "./lib-es/nft/*.js"
    },
    "./serialization": {
      "@ledgerhq/source": "./src/serialization/index.ts",
      "require": "./lib/serialization/index.js",
      "default": "./lib-es/serialization/index.js"
    },
    "./transaction/*": {
      "@ledgerhq/source": "./src/transaction/*.ts",
      "require": "./lib/transaction/*.js",
      "default": "./lib-es/transaction/*.js"
    },
    "./test-helpers/staticTime": "./src/test-helpers/staticTime.ts",
    "./tracking/*": {
      "@ledgerhq/source": "./src/tracking/*.ts",
      "require": "./lib/tracking/*.js",
      "default": "./lib-es/tracking/*.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": "8.0.0",
    "@ledgerhq/logs": "6.17.0",
    "axios": "1.13.5",
    "bignumber.js": "^9.1.2",
    "bip32-path": "^0.4.2",
    "eip55": "^2.1.0",
    "expect": "30.2.0",
    "imurmurhash": "^0.1.4",
    "invariant": "^2.2.2",
    "lodash": "4.17.21",
    "prando": "^6.0.1",
    "rxjs": "7.8.2",
    "uuid": "11.1.0",
    "zod": "4.3.6",
    "@ledgerhq/devices": "8.17.0",
    "@ledgerhq/hw-transport": "^6.35.7",
    "@ledgerhq/live-env": "^3.0.0",
    "@ledgerhq/live-currency-format": "^0.14.1",
    "@ledgerhq/live-network": "^3.0.0",
    "@ledgerhq/types-live": "^6.120.0",
    "@ledgerhq/live-config": "^3.8.0"
  },
  "devDependencies": {
    "@types/imurmurhash": "^0.1.4",
    "@types/node": "24.12.0",
    "@types/invariant": "^2.2.2",
    "@types/jest": "30.0.0",
    "@types/lodash": "^4.17.21",
    "@types/numeral": "^2.0.2",
    "cross-env": "^7.0.3",
    "jest": "30.2.0",
    "oxfmt": "0.36.0",
    "oxlint": "1.51.0",
    "timemachine": "^0.3.2",
    "@swc/jest": "0.2.39",
    "@swc/core": "1.15.11",
    "@domain/entity-currency-crypto": "^0.10.0",
    "@ledgerhq/hw-transport-node-speculos": "^6.34.7",
    "@ledgerhq/live-dmk-speculos": "^0.10.5",
    "@ledgerhq/wallet-framework-test-setup": "^0.1.6"
  },
  "scripts": {
    "clean": "rm -rf 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",
    "typecheck": "tsc --noEmit --customConditions node",
    "doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
    "lint": "oxlint -c ../oxc-live-libs/.oxlintrc.json ./src",
    "lint:fix": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src && oxlint -c ../oxc-live-libs/.oxlintrc.json ./src --fix --quiet",
    "format": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src",
    "format:check": "pnpm exec oxfmt -c ../../.oxfmtrc.json ./src --check",
    "test": "cross-env TZ=America/Paris jest",
    "test-integ": "jest --config=jest.integ.config.js",
    "test:debug": "cross-env TZ=America/Paris node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
    "unimported": "unimported"
  }
}