mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: f5961e46b56f3826e58b4333a35cf8a5c50cc563 [formerly 6368f35e4962afdaf7500bf662a62aecc9b3dc14] [formerly 75bb535f255dc8117a834d37176a97b7663b4bdc [formerly 2c0f841d977512495c7567f148b66cc513d057fb]] [formerly 4301a9fc3605694b60864f23799438383e8bbab5 [formerly a9e20611375f862ea1c6d0f9061167d69652ba76] [formerly c2d1096d3ee5d3b24adc9915d0c15ef192a66504 [formerly c0fff86692]]]
Former-commit-id: 6e41d976a499eda647f8d896861c0a0e72789241 [formerly 92eab3be2da55530c365d86ff81bed00b989ae7e] [formerly eeb7c467a74aca68009060482de22ceb83169bc1 [formerly 987ce106e902a88a5ca4ecb651dd5d780afb1999]]
Former-commit-id: 72cd97029925fb86a259c576cdb558c8e0c09ace [formerly 27b411dcb42f1dd330a0b5733204a19606482845]
Former-commit-id: 5356f909d6e416560f6d9b2a57c69ed483aa8032
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "@zk-kit/protocols",
|
|
"version": "1.2.1",
|
|
"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.3.1",
|
|
"@ethersproject/bytes": "^5.5.0",
|
|
"@ethersproject/solidity": "^5.5.0",
|
|
"@ethersproject/strings": "^5.5.0",
|
|
"circomlibjs": "0.0.8",
|
|
"ffjavascript": "0.2.38",
|
|
"incrementalquintree": "^1.0.7",
|
|
"snarkjs": "^0.4.12"
|
|
}
|
|
}
|