merkle-t
Version:
Merkle Tree with Poseidon Hash in TypeScript
52 lines (51 loc) • 1.18 kB
JSON
{
"name": "merkle-t",
"version": "0.0.8",
"author": {
"name": "Ash Whitehat",
"url": "https://github.com/ashwhitehat"
},
"description": "Merkle Tree with Poseidon Hash in TypeScript",
"repository": {
"type": "git",
"url": "git@github.com:invers-technology/merkle-tree-ts.git"
},
"homepage": "https://github.com/invers-technology/merkle-tree-ts",
"keywords": [
"merkle-tree",
"merkle-proof",
"typescript"
],
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
"files": [
"circuit",
"*.js",
"*.d.ts",
"*.map"
],
"private": false,
"scripts": {
"lint": "eslint src",
"fmt": "prettier --write .",
"fmt:check": "prettier --check src tests",
"build": "tsc",
"prepare": "rm -rf dist && yarn build && cp -r dist/* .",
"test": "jest"
},
"dependencies": {
"circomlib": "^2.0.5",
"poseidon-h": "^0.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"circom_tester": "^0.0.21",
"eslint": "^9.24.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
}
}