mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-01-09 14:48:12 -05:00
* Fix/update binary merkle root circuit version (#1000) * fix(circuits)!: update binary merkle root circuit version re #999 * chore: update snarkjs version from 0.7.4 to 0.7.5 * refactor: update the proof package and smart contracts (#1011) refactor: update the proof package and smart contracts with new zk artifacts
61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
{
|
|
"name": "@semaphore-protocol/proof",
|
|
"version": "4.12.1",
|
|
"description": "A library to generate and verify Semaphore proofs.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"main": "dist/index.browser.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"node": {
|
|
"require": "./dist/index.node.cjs",
|
|
"default": "./dist/index.node.js"
|
|
},
|
|
"browser": "./dist/index.browser.js",
|
|
"default": "./dist/index.browser.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"src/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"repository": "https://github.com/semaphore-protocol/semaphore",
|
|
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/proof",
|
|
"bugs": {
|
|
"url": "https://github.com/semaphore-protocol/semaphore.git/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && yarn build:browser && yarn build:node",
|
|
"build:browser": "rollup -c rollup.browser.config.ts --configPlugin typescript",
|
|
"build:node": "rollup -c rollup.node.config.ts --configPlugin typescript",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-alias": "^5.1.0",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@types/snarkjs": "^0",
|
|
"rimraf": "^5.0.5",
|
|
"rollup": "^4.12.0",
|
|
"rollup-plugin-cleanup": "^3.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@semaphore-protocol/group": "4.12.1",
|
|
"@semaphore-protocol/identity": "4.12.1"
|
|
},
|
|
"dependencies": {
|
|
"@semaphore-protocol/utils": "4.12.1",
|
|
"@zk-kit/artifacts": "2.0.1",
|
|
"@zk-kit/utils": "1.3.0",
|
|
"ethers": "6.13.4",
|
|
"snarkjs": "0.7.5"
|
|
}
|
|
}
|