Files
zk-kit/packages/protocols/package.json
2022-01-17 13:05:07 +01:00

37 lines
1.0 KiB
JSON

{
"name": "@zk-kit/protocols",
"version": "1.0.27",
"description": "Client library for generating and verifying Semaphore & RLN ZK proofs.",
"license": "MIT",
"main": "dist/index.node.js",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"repository": "https://github.com/appliedzkp/zk-kit",
"homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/protocols",
"scripts": {
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build"
},
"keywords": [],
"author": {
"name": "Andrija Novakovic",
"email": "akinovak@gmail.com"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0"
},
"dependencies": {
"circomlibjs": "^0.0.8",
"ethers": "^5.4.7",
"incrementalquintree": "^1.0.7",
"snarkjs": "^0.4.10"
}
}