{
  "name": "@truestamp/client",
  "version": "2.1.0",
  "private": false,
  "source": "./src/index.ts",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.mjs",
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs",
    "node": "./dist/index.js",
    "default": "./dist/index.mjs"
  },
  "license": "MIT License",
  "author": "Truestamp <support@truestamp.com>",
  "files": [
    "README.md",
    "LICENSE",
    "package.json",
    "/src",
    "/dist",
    "/examples",
    "/tests"
  ],
  "keywords": [
    "authenticity",
    "blockchain",
    "crypto",
    "cryptography",
    "data",
    "hash function",
    "hash",
    "hashing",
    "integrity",
    "Merkle tree",
    "Merkle",
    "proof",
    "provenance",
    "timestamp",
    "Truestamp",
    "verification",
    "verify"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/truestamp/discussions.git"
  },
  "bugs": {
    "url": "https://github.com/truestamp/discussions/issues"
  },
  "dependencies": {
    "dotenv-mono": "^1.3.9"
  },
  "devDependencies": {
    "@skypack/package-check": "^0.2.2",
    "@types/node": "^18.11.18",
    "tsup": "^6.5.0",
    "typescript": "^4.8.4",
    "zod": "^3.20.2",
    "zod-validation-error": "^0.3.0",
    "eslint-config-base": "0.0.0",
    "types": "0.0.0",
    "tsconfig": "0.0.0",
    "utils": "0.0.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts-resolve",
    "dev": "pnpm run build --watch",
    "clean": "rm -rf dist",
    "package-check": "npx package-check",
    "test": "vitest --run --coverage --passWithNoTests",
    "test:watch": "vitest --coverage --passWithNoTests",
    "lint": "eslint \"src/**/*.ts*\"",
    "examples:deno": "cd examples/deno && deno run --allow-net --allow-read --allow-env ./index.ts",
    "examples:nodejs": "cd examples/nodejs && node ./index.cjs"
  }
}