{
  "name": "@alexalves87/opentimestamps",
  "version": "1.0.5",
  "description": "A modern, zero-dependency TypeScript library for creating and verifying decentralized, blockchain-backed timestamps using the OpenTimestamps protocol.",
  "keywords": [
    "opentimestamps",
    "blockchain",
    "timestamp",
    "proof-of-existence",
    "bitcoin",
    "typescript",
    "nodejs",
    "crypto",
    "notary",
    "merkle-tree",
    "cryptography"
  ],
  "author": "Alejandro Alvarez Espejo \"AlexAlves87\" <catabego@hotmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexalves87/opentimestamps.git"
  },
  "bugs": {
    "url": "https://github.com/alexalves87/opentimestamps/issues"
  },
  "homepage": "https://github.com/alexalves87/opentimestamps#readme",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "prepublishOnly": "npm run lint && npm run build && npm test"
  },
  "dependencies": {
    "@noble/hashes": "^2.0.1"
  },
  "devDependencies": {
    "@types/node": "^20.x",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "typescript": "^5.0.0",
    "typescript-eslint": "^8.0.0",
    "vitest": "^2.1.9",
    "@vitest/coverage-v8": "^2.1.9"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
