mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Conflicts: packages/protocols/src/utils.ts packages/protocols/src/zk-protocol.ts packages/protocols/yarn.lock
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@zk-kit/protocols",
|
|
"version": "1.4.2",
|
|
"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-cleanup": "^3.2.1",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"typedoc": "^0.22.11"
|
|
},
|
|
"dependencies": {
|
|
"@ethersproject/bytes": "^5.5.0",
|
|
"@ethersproject/solidity": "^5.5.0",
|
|
"@ethersproject/strings": "^5.5.0",
|
|
"@zk-kit/incremental-merkle-tree": "^0.4.2",
|
|
"circomlibjs": "0.0.8",
|
|
"ffjavascript": "0.2.38",
|
|
"snarkjs": "^0.4.13"
|
|
}
|
|
}
|