{
  "name": "@motebit/verifier",
  "version": "1.13.3",
  "description": "Apache-2.0 library for verifying signed Motebit artifacts (identity files, execution receipts, credentials, presentations) — file-reading and human-formatting helpers on top of @motebit/crypto. The canonical `motebit-verify` CLI now lives at @motebit/verify; this package is the Apache-2.0 library it sits on.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "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",
    "verify",
    "library",
    "ed25519",
    "signature",
    "receipt",
    "credential",
    "identity",
    "offline",
    "audit"
  ],
  "homepage": "https://github.com/motebit/motebit/tree/main/packages/verifier#readme",
  "bugs": {
    "url": "https://github.com/motebit/motebit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/motebit/motebit",
    "directory": "packages/verifier"
  },
  "publishConfig": {
    "access": "public"
  },
  "motebit": {
    "implements": [
      "spec/identity-v1.md",
      "spec/credential-v1.md"
    ]
  },
  "dependencies": {
    "@motebit/crypto": "3.19.1",
    "@motebit/protocol": "3.16.0"
  },
  "devDependencies": {
    "@noble/ed25519": "~3.1.0",
    "@noble/hashes": "^2.2.0",
    "@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"
  }
}