{
  "name": "@ledgerhq/coin-framework",
  "version": "7.1.0",
  "description": "Ledger framework for Coin integration",
  "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/coin-framework",
  "publishConfig": {
    "access": "public"
  },
  "typesVersions": {
    "*": {
      "lib/*": [
        "lib/*"
      ],
      "lib-es/*": [
        "lib-es/*"
      ],
      "account": [
        "lib/account/index"
      ],
      "currencies": [
        "lib/currencies/index"
      ],
      "serialization": [
        "lib/serialization/index"
      ],
      "*": [
        "lib/*"
      ]
    }
  },
  "exports": {
    "./lib/*": "./lib/*.js",
    "./lib-es/*": "./lib-es/*.js",
    "./currencies": {
      "@ledgerhq/source": "./src/currencies/index.ts",
      "require": "./lib/currencies/index.js",
      "default": "./lib-es/currencies/index.js"
    },
    "./*": {
      "@ledgerhq/source": "./src/*.ts",
      "require": "./lib/*.js",
      "default": "./lib-es/*.js"
    },
    "./package.json": "./package.json"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "bignumber.js": "^9.1.2",
    "expect": "30.2.0",
    "@ledgerhq/errors": "^6.32.0",
    "@ledgerhq/live-env": "^2.31.0",
    "@ledgerhq/live-currency-format": "^0.7.1",
    "@ledgerhq/types-cryptoassets": "^7.35.0"
  },
  "devDependencies": {
    "@types/node": "24.12.0",
    "@types/jest": "30.0.0",
    "cross-env": "^7.0.3",
    "jest": "30.2.0",
    "@swc/jest": "0.2.39",
    "@swc/core": "1.15.11"
  },
  "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",
    "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": "cross-env TZ=America/Paris jest",
    "test:debug": "cross-env TZ=America/Paris node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
    "unimported": "unimported"
  }
}