mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: d5651f6ff033ef2d978f37a46897c557ebe66ccc [formerly 5d77cc74505bd50c55b437bdd1de3d6cb2c7f1cf] [formerly 52539bea3b6623c79feffd469bd389c66ed9c8e4 [formerly d6ddb36d96dbc09693efe5306f8ebdf8b0e1a56d]] [formerly 280312dc53efc7d7383817767e7045a1aba5384f [formerly 85bcfce16471e2f02d4c5baf569c36c1744b975a] [formerly 50fb0aa12149755f2eb4f82a1a2ff50bd024903b [formerly cc21bb125f]]]
Former-commit-id: 1ec451efb69057ec72757422c48203c6a3682ca8 [formerly 8a248e7dcb3a15df1281bff04407eff37b8efa29] [formerly 1a6a61a51ed59bb1da18d04942d19ae2f081f0ed [formerly 147dbd82dcf399fef54c7a2263c6aa5347b027e0]]
Former-commit-id: b989c405f1eddaa2757729fb35dc2e17de1a6236 [formerly 1d63635f8cf462fed1a18bc850a6e11874c6834b]
Former-commit-id: 0c8caccb411ea4cdf595e57168255a226e0ab1e6
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@zk-kit/protocols",
|
|
"version": "1.11.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-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.3",
|
|
"circomlibjs": "0.0.8",
|
|
"ffjavascript": "0.2.38",
|
|
"snarkjs": "^0.4.13"
|
|
}
|
|
}
|