{
  "name": "@ledgerhq/live-currency-format",
  "version": "0.10.0",
  "description": "Ledger Live currency formatting utilities",
  "keywords": [
    "Ledger"
  ],
  "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/live-currency-format",
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/index.js",
  "module": "lib-es/index.js",
  "types": "lib/index.d.ts",
  "license": "Apache-2.0",
  "dependencies": {
    "bignumber.js": "^9.1.2",
    "@ledgerhq/live-env": "^2.39.0",
    "@ledgerhq/types-cryptoassets": "^7.38.0"
  },
  "devDependencies": {
    "@types/node": "24.12.0",
    "@swc/core": "1.15.11",
    "@swc/jest": "0.2.39",
    "@types/jest": "30.0.0",
    "jest": "30.2.0",
    "@ledgerhq/cryptoassets": "^13.52.0"
  },
  "typesVersions": {
    "*": {
      "*.json": [
        "*.json"
      ],
      "*": [
        "lib/*"
      ],
      "lib/*": [
        "lib/*"
      ],
      "lib-es/*": [
        "lib-es/*"
      ]
    }
  },
  "exports": {
    "./lib/*": "./lib/*.js",
    "./lib/*.js": "./lib/*.js",
    "./lib-es/*": "./lib-es/*.js",
    "./lib-es/*.js": "./lib-es/*.js",
    "./*": {
      "@ledgerhq/source": "./src/*.ts",
      "require": "./lib/*.js",
      "default": "./lib-es/*.js"
    },
    "./*.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"
  },
  "scripts": {
    "clean": "rimraf lib lib-es",
    "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
    "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",
    "lint": "oxlint -c ../oxc-live-libs/.oxlintrc.json ./src",
    "lint:fix": "pnpm lint --fix",
    "typecheck": "tsc --noEmit --customConditions node",
    "unimported": "pnpm knip --directory ../.. -W libs/live-currency-format",
    "test": "jest",
    "coverage": "jest --coverage",
    "format": "pnpm exec oxfmt -c ../oxc-live-libs/.oxfmtrc.json ./src",
    "format:check": "pnpm exec oxfmt -c ../oxc-live-libs/.oxfmtrc.json ./src --check"
  }
}