mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 15:37:57 -05:00
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"name": "@cryptkeeperzk/semaphore-proof",
|
|
"version": "3.10.1",
|
|
"description": "A library to generate and verify Semaphore 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/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"repository": "https://github.com/CryptKeeperZK/semaphore",
|
|
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/proof",
|
|
"bugs": {
|
|
"url": "https://github.com/semaphore-protocol/semaphore.git/issues"
|
|
},
|
|
"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/proof"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^24.1.0",
|
|
"@rollup/plugin-json": "^5.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
"poseidon-lite": "^0.2.0",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"typedoc": "^0.22.11"
|
|
},
|
|
"peerDependencies": {
|
|
"@cryptkeeperzk/semaphore-group": "3.10.1",
|
|
"@cryptkeeperzk/semaphore-identity": "3.10.1"
|
|
},
|
|
"dependencies": {
|
|
"@cryptkeeperzk/ffjavascript": "^0.2.59",
|
|
"@cryptkeeperzk/snarkjs": "^0.7.1",
|
|
"@ethersproject/bignumber": "^5.5.0",
|
|
"@ethersproject/bytes": "^5.7.0",
|
|
"@ethersproject/keccak256": "^5.7.0",
|
|
"@ethersproject/strings": "^5.5.0",
|
|
"@zk-kit/incremental-merkle-tree": "0.4.3"
|
|
}
|
|
}
|