mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: 454de6438f2214eaed0789605e18e3d9ced91109 [formerly e2ef02a8a4fff46362cd28317500e040d652e396] [formerly 5f3f09780bb74bf67a6e8d1e887caed0c3d40364 [formerly a70863c977]]
Former-commit-id: 54d653c6c6a366f5e1382304b35894c606df1e40 [formerly d247aac295794b5b290f7ca3941b396124c4d840]
Former-commit-id: 507c863df6b769e8010cfc90ab4f45b9f911de23
43 lines
1.1 KiB
JSON
43 lines
1.1 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",
|
|
"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"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^8.3.0",
|
|
"rollup-plugin-cleanup": "^3.2.1"
|
|
},
|
|
"dependencies": {
|
|
"@zk-kit/incremental-merkle-tree": "^0.2.0",
|
|
"circomlibjs": "^0.0.8",
|
|
"ethers": "^5.4.7",
|
|
"incrementalquintree": "^1.0.7",
|
|
"snarkjs": "^0.4.10"
|
|
}
|
|
}
|