{
  "name": "@motebit/crypto-tpm",
  "version": "1.1.32",
  "description": "Apache-2.0 verifier for TPM 2.0 Endorsement-Key hardware-attestation credentials — offline chain verification against pinned vendor EK roots (Infineon, Nuvoton, STMicro, Intel PTT) plus binary TPMS_ATTEST parsing. Plugs into @motebit/crypto's HardwareAttestationVerifiers dispatcher to validate TPM-attested motebit identities on Windows/Linux hosts.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts",
    "dist/**/*.d.ts.map",
    "LICENSE",
    "NOTICE",
    "README.md"
  ],
  "sideEffects": false,
  "license": "Apache-2.0",
  "keywords": [
    "motebit",
    "tpm",
    "tpm2",
    "attestation",
    "endorsement-key",
    "hardware-attestation",
    "windows",
    "linux",
    "x509",
    "verify"
  ],
  "homepage": "https://github.com/motebit/motebit/tree/main/packages/crypto-tpm#readme",
  "bugs": {
    "url": "https://github.com/motebit/motebit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/motebit/motebit",
    "directory": "packages/crypto-tpm"
  },
  "publishConfig": {
    "access": "public"
  },
  "motebit": {
    "implements": [
      "spec/credential-v1.md"
    ]
  },
  "dependencies": {
    "@peculiar/x509": "^1.12.0",
    "@motebit/protocol": "3.16.0",
    "@motebit/crypto": "3.19.1"
  },
  "devDependencies": {
    "@peculiar/webcrypto": "^1.7.1",
    "@types/node": "^22.20.1",
    "fast-check": "^4.9.0",
    "typescript": "^5.6.0",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint --parser-options=project:tsconfig.eslint.json src/",
    "lint:pack": "publint --strict && attw --pack --profile esm-only",
    "clean": "rm -rf dist .turbo *.tsbuildinfo"
  }
}