mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: dfb2878e859af75bc3e61b64751aff1e3a050dcb [formerly 3b5cfc5a3483b84b241b9683a4396953f126eaf9] [formerly 373ce91cab5dc3e5115bf2f98dbc792434789b30 [formerly 05a9303d020d72c65197ed635de95a6936e86b4a]] [formerly 1564503938bc65d935991a29c5db6950c7f89e64 [formerly 05c68d6c91ba15bf30e08fa76d747143bd18a269] [formerly 901a7d19556c40e8a0208a7e81f462397ff41d57 [formerly e6e49453e0]]]
Former-commit-id: 6be98aebfc50ec77dc8d010a9fa6c5680a160519 [formerly cae2d5c36eabac31ab2aca1f84d2741ca218679e] [formerly b5f396c6e6fbe23ea02795140b6f5e39f6495258 [formerly 9c7b308017b67537bcab1e8612a738ddafd96382]]
Former-commit-id: 6fa08777005fdfa154bfa6c469a7bf995ff442b1 [formerly b35985cf47581d6c8e7c1e7afbc5b1fbc2a3df86]
Former-commit-id: 48ba611e0702324f7197fadd6f7fb404e598ce6e
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@zk-kit/protocols",
|
|
"version": "1.3.0",
|
|
"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.1",
|
|
"@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"
|
|
}
|
|
}
|