{
  "name": "@motebit/verify",
  "version": "1.8.13",
  "description": "The canonical `motebit-verify` command-line tool — verifies any signed motebit artifact offline, with every hardware-attestation platform bundled (Apple App Attest, Android Hardware-Backed Keystore Attestation, TPM 2.0, WebAuthn). One install, no network, self-attesting. Replaces the deprecated @motebit/verify@0.x zero-dep library: library primitives now live in @motebit/crypto; file-reading + formatting helpers in @motebit/verifier; this package is the binary.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "motebit-verify": "./dist/cli.js"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts",
    "dist/**/*.d.ts.map",
    "examples/*.json",
    "LICENSE",
    "NOTICE",
    "README.md"
  ],
  "sideEffects": false,
  "license": "Apache-2.0",
  "keywords": [
    "motebit",
    "verify",
    "cli",
    "hardware-attestation",
    "app-attest",
    "android-keystore",
    "key-attestation",
    "tpm",
    "webauthn",
    "ed25519",
    "attestation"
  ],
  "homepage": "https://github.com/motebit/motebit/tree/main/packages/verify#readme",
  "bugs": {
    "url": "https://github.com/motebit/motebit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/motebit/motebit",
    "directory": "packages/verify"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@motebit/crypto": "3.19.1",
    "@motebit/crypto-android-keystore": "1.1.31",
    "@motebit/crypto-appattest": "1.0.33",
    "@motebit/crypto-tpm": "1.1.32",
    "@motebit/crypto-webauthn": "1.0.33",
    "@motebit/protocol": "3.16.0",
    "@motebit/state-export-client": "0.5.23",
    "@motebit/verifier": "1.13.3"
  },
  "devDependencies": {
    "@types/node": "^22.20.1",
    "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"
  }
}