{
  "name": "@plus99/murmur-hash",
  "version": "1.0.2",
  "description": "Pure TypeScript implementation of MurmurHash2 and MurmurHash3 algorithms for Node.js and browsers",
  "author": "Plus99",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/plus-99/MurmurHash.git"
  },
  "homepage": "https://github.com/plus-99/MurmurHash#readme",
  "bugs": {
    "url": "https://github.com/plus-99/MurmurHash/issues"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm && npm run build:umd",
    "build:cjs": "tsc",
    "build:esm": "tsc --module esnext --outDir dist/esm && mv dist/esm/index.js dist/index.esm.js && rm -rf dist/esm",
    "build:umd": "rollup -c",
    "dev": "tsc --watch",
    "test": "node dist/test.js",
    "prepare": "npm run build"
  },
  "keywords": [
    "murmur",
    "hash",
    "murmur2",
    "murmur3",
    "murmurhash",
    "typescript",
    "nodejs",
    "browser",
    "crypto",
    "algorithm"
  ],
  "devDependencies": {
    "@rollup/plugin-typescript": "^11.1.6",
    "rollup": "^3.29.5",
    "typescript": "^5.9.2"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "tslib": "^2.8.1"
  }
}
