{
  "name": "hashery",
  "version": "2.0.0",
  "description": "Browser Compatible Object Hashing",
  "type": "module",
  "main": "dist/node/index.mjs",
  "types": "dist/node/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/node/index.d.mts",
        "default": "./dist/node/index.mjs"
      },
      "require": {
        "types": "./dist/node/index.d.cts",
        "default": "./dist/node/index.cjs"
      }
    },
    "./browser": {
      "import": "./dist/browser/index.js",
      "default": "./dist/browser/index.iife.js"
    }
  },
  "repository": "https://github.com/jaredwray/hashery.git",
  "author": "Jared Wray <me@jaredwray.com>",
  "engines": {
    "node": ">=20"
  },
  "license": "MIT",
  "scripts": {
    "clean": "rimraf ./dist ./coverage ./node_modules ./pnpm-lock.yaml ./site/README.md ./site/dist",
    "build": "rimraf ./dist && tsdown",
    "prepare": "pnpm build",
    "benchmark": "pnpm benchmark:main && pnpm benchmark:vs-others",
    "benchmark:main": "tsx benchmark/hashing.ts",
    "benchmark:vs-others": "tsx benchmark/hashery-vs-others.ts",
    "lint": "biome check --write --error-on-warnings",
    "test": "pnpm lint && vitest run --coverage",
    "test:ci": "biome check --error-on-warnings && vitest run --coverage",
    "website:build": "rimraf ./site/README.md ./site/dist && pnpm docula",
    "website:dev": "rimraf ./site/README.md ./site/dist && pnpm docula dev"
  },
  "dependencies": {
    "hookified": "^2.1.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.10",
    "@faker-js/faker": "^10.4.0",
    "@monstermann/tinybench-pretty-printer": "^0.3.0",
    "@types/node": "^25.5.2",
    "@types/object-hash": "^3.0.6",
    "@vitest/coverage-v8": "^4.1.2",
    "docula": "^1.12.0",
    "dotenv": "^17.4.1",
    "object-hash": "^3.0.0",
    "rimraf": "^6.1.2",
    "tinybench": "^6.0.0",
    "tsdown": "^0.21.7",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2",
    "vitest": "^4.1.2"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "webcrypto",
    "object-hash",
    "hash",
    "hashing",
    "sha256",
    "sha384",
    "sha512",
    "djb2",
    "murmur",
    "fnv1",
    "crc32",
    "digest",
    "deterministic",
    "stable-hash",
    "json-hash",
    "browser-compatible",
    "native-crypto",
    "secure",
    "standards-based",
    "esmodule",
    "lightweight",
    "fast",
    "modern"
  ]
}
