{
  "name": "@ledgerhq/coin-stellar",
  "version": "6.26.2",
  "description": "Ledger Stellar Coin integration",
  "license": "Apache-2.0",
  "keywords": [
    "Ledger",
    "LedgerWallet",
    "Stellar",
    "Hardware Wallet"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/LedgerHQ/coin-modules.git"
  },
  "bugs": {
    "url": "https://github.com/LedgerHQ/coin-modules/issues"
  },
  "homepage": "https://github.com/LedgerHQ/coin-modules/tree/main/libs/coin-modules/coin-stellar",
  "publishConfig": {
    "access": "public"
  },
  "typesVersions": {
    "*": {
      "lib/*": [
        "lib/*"
      ],
      "lib-es/*": [
        "lib-es/*"
      ],
      "api": [
        "lib/api/index"
      ],
      "logic": [
        "lib/logic/index"
      ],
      "types": [
        "lib/types/index"
      ],
      "*": [
        "lib/*",
        "lib/logic/*",
        "lib/types/*"
      ]
    }
  },
  "exports": {
    "./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"
    },
    "./errors": {
      "@ledgerhq/source": "./src/types/errors.ts",
      "require": "./lib/types/errors.js",
      "default": "./lib-es/types/errors.js"
    },
    "./logic": {
      "@ledgerhq/source": "./src/logic/index.ts",
      "require": "./lib/logic/index.js",
      "default": "./lib-es/logic/index.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"
    },
    ".": {
      "require": "./lib/index.js",
      "default": "./lib-es/index.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@stellar/stellar-sdk": "^14.0.0",
    "bignumber.js": "^9.1.2",
    "@exodus/patch-broken-hermes-typed-arrays": "1.0.0-alpha.1",
    "@ledgerhq/coin-module-framework": "^3.6.0"
  },
  "peerDependencies": {
    "@ledgerhq/errors": "^6.33.0",
    "@ledgerhq/live-network": "^2.4.0",
    "@ledgerhq/logs": "^6.17.0"
  },
  "devDependencies": {
    "@swc/core": "1.15.11",
    "@swc/jest": "0.2.39",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.0.0",
    "jest": "30.2.0",
    "oxfmt": "0.36.0",
    "oxlint": "1.51.0"
  },
  "scripts": {
    "clean": "rimraf 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": "oxlint src",
    "lint:fix": "oxfmt src && oxlint src --fix --quiet",
    "test": "jest",
    "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
    "test-integ": "jest --config=jest.integ.config.js",
    "test-integ:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config=jest.integ.config.js",
    "typecheck": "tsc --noEmit --customConditions node",
    "unimported": "knip --include=files,dependencies",
    "format": "oxfmt src",
    "format:check": "oxfmt src --check"
  }
}