{
  "name": "@ledgerhq/domain-service",
  "description": "Ledger service responsible for domain handling",
  "version": "1.8.3",
  "license": "Apache-2.0",
  "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/domain-service",
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/index.js",
  "module": "lib-es/index.js",
  "types": "lib/index.d.ts",
  "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",
        "./src/*.tsx"
      ],
      "require": "./lib/*.js",
      "default": "./lib-es/*.js"
    },
    "./*.js": {
      "@ledgerhq/source": "./src/*.ts",
      "require": "./lib/*.js",
      "default": "./lib-es/*.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib",
    "lib-es",
    "src"
  ],
  "dependencies": {
    "axios": "1.13.2",
    "eip55": "^2.1.1",
    "react": "19.0.0",
    "react-dom": "19.0.0",
    "@ledgerhq/errors": "^6.35.0",
    "@ledgerhq/logs": "^6.17.0",
    "@ledgerhq/types-live": "^6.108.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "6.9.1",
    "@testing-library/dom": "10.4.1",
    "@testing-library/react": "16.3.1",
    "@types/jest": "30.0.0",
    "@types/node": "24.12.0",
    "cross-env": "^7.0.3",
    "jest": "30.2.0",
    "oxfmt": "0.36.0",
    "oxlint": "1.51.0",
    "jest-environment-jsdom": "30.2.0",
    "react-test-renderer": "19.0.0",
    "@swc/jest": "0.2.39",
    "@swc/core": "1.15.11",
    "@ledgerhq/types-cryptoassets": "^7.36.0"
  },
  "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",
    "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 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/New_York jest",
    "unimported": "unimported",
    "coverage": "jest --coverage"
  }
}