mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: 27566743689f24927198d74a1c0e58afff2a149a [formerly 737666bbfc74137a0eeea6aa28a481c28b736a3b] [formerly 1fdd139d0c40515e3427a154ecd1a57052364d8e [formerly 8f5fbc0386d967213fe45ed821963284e48f6831]] [formerly c482677f6cde7105388b53ddbe866bf828217a32 [formerly bb82106e2101bc67962fc02b6624d88cdcb64e22] [formerly 984418c9b942b805a04fd2a614ff81dac084f17f [formerly cabcc13a08]]]
Former-commit-id: ee69fa908bb9168b31a6a5dae92833947061546e [formerly 86269d624e36db0925e53dd5b43053084d8b6de0] [formerly be8dd7810aba314198882280eccb42c3d67250e5 [formerly 623e38bd7deec1b936ab720628d608c1fb6d0515]]
Former-commit-id: 91ea2fdc24b533e247c8c770d735b5b705e51d5b [formerly 87b839c6fdc8bc90ecc586f9520627465f66c876]
Former-commit-id: 2c75668df84c88a0fa56faa9db4fba757efb8e98
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "@zk-kit/protocols",
|
|
"version": "1.2.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.2.0",
|
|
"@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"
|
|
}
|
|
}
|