UNPKG

@jayanth-kumar-morem/sparse-merkle-tree

Version:

A TypeScript implementation of Sparse Merkle Trees with Poseidon hash function support

58 lines (57 loc) 1.5 kB
{ "name": "@jayanth-kumar-morem/sparse-merkle-tree", "version": "1.0.1", "description": "A TypeScript implementation of Sparse Merkle Trees with Poseidon hash function support", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepublishOnly": "npm run build && npm test", "prepare": "npm run build" }, "keywords": [ "sparse-merkle-tree", "merkle-tree", "cryptography", "poseidon", "typescript", "zero-knowledge", "zk-proofs", "blockchain" ], "author": "Jayanth Kumar <jayanthkumar1903@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/jayanth-kumar-morem/sparse-merkle-tree.git" }, "bugs": { "url": "https://github.com/jayanth-kumar-morem/sparse-merkle-tree/issues" }, "homepage": "https://github.com/jayanth-kumar-morem/sparse-merkle-tree#readme", "devDependencies": { "@types/jest": "^29.5.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "peerDependencies": { "circomlib": "^2.0.0" }, "engines": { "node": ">=14.0.0" } }