Files
zk-kit/packages/protocols/package.json
2022-01-25 18:43:12 +01:00

47 lines
1.3 KiB
JSON

{
"name": "@zk-kit/protocols",
"version": "1.2.3",
"description": "Client library for generating and verifying Semaphore & RLN ZK proofs.",
"license": "MIT",
"main": "dist/index.node.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"repository": "https://github.com/appliedzkp/zk-kit",
"homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/protocols",
"author": {
"name": "Andrija Novakovic",
"email": "akinovak@gmail.com"
},
"scripts": {
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build",
"docs": "typedoc src/index.ts --out ../../docs/protocols"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "^0.22.11"
},
"dependencies": {
"@zk-kit/incremental-merkle-tree": "^0.4.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/solidity": "^5.5.0",
"@ethersproject/strings": "^5.5.0",
"circomlibjs": "0.0.8",
"ffjavascript": "0.2.38",
"snarkjs": "^0.4.12"
}
}