{
  "name": "@ledgerhq/ledger-cal-service",
  "version": "1.15.2",
  "description": "Ledger CAL service client",
  "keywords": [
    "Ledger",
    "Services",
    "CAL",
    "cal"
  ],
  "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-service/cal",
  "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",
      "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"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "@ledgerhq/live-env": "2.32.0",
    "@ledgerhq/live-network": "2.5.0"
  },
  "devDependencies": {
    "@types/jest": "30.0.0",
    "@types/node": "24.12.0",
    "dotenv": "^16.4.5",
    "expect": "30.2.0",
    "jest": "30.2.0",
    "msw": "^2.7.3",
    "@swc/jest": "0.2.39",
    "@swc/core": "1.15.11",
    "ts-node": "^10.9.2"
  },
  "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 --passWithNoTests",
    "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": "eslint ./src --no-error-on-unmatched-pattern --ext .ts --cache",
    "lint:fix": "pnpm lint --fix",
    "typecheck": "tsc --noEmit --customConditions node",
    "test": "jest",
    "test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js",
    "unimported": "unimported"
  }
}