{
  "dependencies": {
    "node-hid": "^3.2.0",
    "purify-ts": "2.1.0",
    "usb": "^2.16.0",
    "uuid": "11.0.3"
  },
  "devDependencies": {
    "@types/uuid": "^10.0.0",
    "@types/w3c-web-hid": "^1.0.6",
    "rxjs": "7.8.2",
    "ts-node": "10.9.2",
    "@ledgerhq/device-management-kit": "1.2.0",
    "@ledgerhq/eslint-config-dsdk": "0.0.2",
    "@ledgerhq/ldmk-tool": "^0.0.1",
    "@ledgerhq/prettier-config-dsdk": "0.0.2",
    "@ledgerhq/tsconfig-dsdk": "1.0.1",
    "@ledgerhq/vitest-config-dmk": "0.0.0"
  },
  "exports": {
    ".": {
      "import": "./lib/cjs/index.js",
      "require": "./lib/cjs/index.js",
      "types": "./lib/types/index.d.ts"
    }
  },
  "files": [
    "./lib",
    "package.json"
  ],
  "license": "Apache-2.0",
  "name": "@ledgerhq/device-transport-kit-node-hid",
  "peerDependencies": {
    "@ledgerhq/device-management-kit": "^1.2.0",
    "rxjs": "7.8.2"
  },
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/LedgerHQ/device-sdk-ts.git"
  },
  "version": "1.0.1",
  "scripts": {
    "build": "pnpm ldmk-tool build --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json --platform node",
    "dev": "concurrently \"pnpm watch:builds\" \"pnpm watch:types\"",
    "lint": "eslint",
    "lint:fix": "pnpm lint --fix",
    "prebuild": "rimraf lib",
    "prettier": "prettier . --check",
    "prettier:fix": "prettier . --write",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "watch:builds": "pnpm ldmk-tool watch --entryPoints src/index.ts,src/**/*.ts --tsconfig tsconfig.prod.json --platform node",
    "watch:types": "concurrently \"tsc --watch -p tsconfig.prod.json\" \"tsc-alias --watch -p tsconfig.prod.json\""
  }
}