{
  "name": "poseidon-hash",
  "version": "1.0.1",
  "description": "Typescript implementation of the ZK-SNARK friendly Poseidon hash function in isolation, with no dependencies.",
  "scripts": {
    "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
    "build": "rollup --resolveJsonModule --config rollup.config.mjs"
  },
  "author": "",
  "main": "./dist/bundle.cjs",
  "module": "./dist/bundle.mjs",
  "license": "GPL-3.0",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/src/index.d.ts",
        "default": "./dist/bundle.mjs"
      },
      "require": {
        "types": "./dist/types/src/index.d.ts",
        "default": "./dist/bundle.cjs"
      }
    }
  },
  "types": "./dist/types/src/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/Helium-Labs/poseidon-hash"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^15.0.1",
    "@rollup/plugin-terser": "^0.4.3",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/browserify": "^12.0.37",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.10.4",
    "jest": "^29.7.0",
    "rollup": "^4.9.1",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-polyfill-node": "^0.13.0",
    "rollup-plugin-typescript2": "^0.34.1",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.5.4"
  }
}
