@zk-kit/merkle-tree
Version:
Merkle tree implementation in TypeScript.
44 lines (43 loc) • 1.22 kB
JSON
{
"name": "@zk-kit/merkle-tree",
"version": "0.1.0",
"description": "Merkle tree implementation in TypeScript.",
"iife": "dist/index.js",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"main": "dist/index.node.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": "git@github.com:appliedzkp/zk-kit.git",
"homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/merkle-tree",
"author": {
"name": "Omar Desogus",
"email": "me@cedoor.dev",
"url": "https://cedoor.dev"
},
"license": "MIT",
"scripts": {
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"circomlibjs": "^0.0.8",
"rollup-plugin-terser": "^7.0.2"
},
"gitHead": "d711e1e2acfe671e9635ded448fe6f8973b64180"
}