{
  "name": "@ledgerhq/coin-vechain",
  "version": "2.20.0",
  "description": "Ledger VeChain Coin integration",
  "keywords": [
    "Ledger",
    "LedgerWallet",
    "VeChain",
    "vet",
    "vtho",
    "Hardware Wallet"
  ],
  "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/coin-modules/coin-vechain",
  "publishConfig": {
    "access": "public"
  },
  "typesVersions": {
    "*": {
      "lib/*": [
        "lib/*"
      ],
      "lib-es/*": [
        "lib-es/*"
      ],
      "specs": [
        "lib/test/bot-specs"
      ],
      "transaction": [
        "lib/bridge/transaction"
      ],
      "*": [
        "lib/*"
      ]
    }
  },
  "exports": {
    "./lib/*": "./lib/*.js",
    "./lib-es/*": "./lib-es/*.js",
    "./logic": {
      "@ledgerhq/source": "./src/common-logic/index.ts",
      "require": "./lib/common-logic/index.js",
      "default": "./lib-es/common-logic/index.js"
    },
    "./network": {
      "@ledgerhq/source": "./src/network/index.ts",
      "require": "./lib/network/index.js",
      "default": "./lib-es/network/index.js"
    },
    "./signer": {
      "@ledgerhq/source": "./src/signer/index.ts",
      "require": "./lib/signer/index.js",
      "default": "./lib-es/signer/index.js"
    },
    "./specs": {
      "@ledgerhq/source": "./src/test/bot-specs.ts",
      "require": "./lib/test/bot-specs.js",
      "default": "./lib-es/test/bot-specs.js"
    },
    "./transaction": {
      "@ledgerhq/source": "./src/bridge/transaction.ts",
      "require": "./lib/bridge/transaction.js",
      "default": "./lib-es/bridge/transaction.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"
    },
    ".": {
      "@ledgerhq/source": "./src/index.ts",
      "require": "./lib/index.js",
      "default": "./lib-es/index.js"
    },
    "./package.json": "./package.json"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "@ledgerhq/coin-module-framework": "2.1.0",
    "bignumber.js": "^9.1.2",
    "eip55": "^2.1.1",
    "invariant": "^2.2.2",
    "lodash": "^4.17.21",
    "rxjs": "7.8.2",
    "@vechain/sdk-core": "2.0.0",
    "@vechain/sdk-network": "2.0.0",
    "@ledgerhq/cryptoassets": "^13.45.0",
    "@ledgerhq/devices": "8.14.0",
    "@ledgerhq/errors": "^6.33.0",
    "@ledgerhq/ledger-wallet-framework": "^1.2.0",
    "@ledgerhq/live-env": "^2.32.0",
    "@ledgerhq/live-network": "^2.5.0"
  },
  "devDependencies": {
    "@faker-js/faker": "^9.6.0",
    "@swc/core": "1.15.11",
    "@swc/jest": "0.2.39",
    "@types/invariant": "^2.2.2",
    "@types/jest": "30.0.0",
    "@types/lodash": "^4.14.191",
    "@types/node": "24.12.0",
    "dotenv": "^16.4.5",
    "jest": "30.2.0",
    "msw": "^2.7.3",
    "oxfmt": "0.36.0",
    "oxlint": "1.51.0",
    "@ledgerhq/disable-network-setup": "^0.3.0",
    "@ledgerhq/types-cryptoassets": "^7.36.0",
    "@ledgerhq/types-live": "^6.104.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",
    "doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
    "lint": "oxlint src",
    "lint:fix": "oxfmt src && oxlint src --fix --quiet",
    "typecheck": "tsc --noEmit --customConditions node",
    "test": "jest --passWithNoTests",
    "test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js --passWithNoTests",
    "unimported": "unimported",
    "format": "oxfmt src",
    "format:check": "oxfmt src --check"
  }
}