mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-04-28 03:00:41 -04:00
69 lines
2.2 KiB
JSON
69 lines
2.2 KiB
JSON
{
|
|
"name": "@semaphore/contracts",
|
|
"version": "2.0.0",
|
|
"description": "A privacy gadget for creating anonymous proof of membership on Ethereum.",
|
|
"license": "GPL-3.0",
|
|
"homepage": "https://github.com/appliedzkp/semaphore.git#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/appliedzkp/semaphore.git.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/appliedzkp/semaphore.git/issues"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"solidity",
|
|
"zero-knowledge",
|
|
"zk-snarks",
|
|
"zero-knowledge-proofs",
|
|
"circom",
|
|
"proof-of-membership"
|
|
],
|
|
"scripts": {
|
|
"start": "hardhat node",
|
|
"compile:contracts": "hardhat compile",
|
|
"compile:circuits": "ts-node scripts/compile-circuits.ts",
|
|
"deploy:localhost": "hardhat deploy --tags complete",
|
|
"export:localhost": "mkdir -p exports && hardhat --network localhost export --export exports/localhost.json",
|
|
"test": "hardhat test",
|
|
"test:fullProof": "yarn compile:circuits && yarn test"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.0.4",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.2",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/download": "^8.0.1",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": "^17.0.12",
|
|
"@zk-kit/identity": "^1.2.0",
|
|
"@zk-kit/protocols": "^1.2.3",
|
|
"chai": "^4.3.5",
|
|
"circomlib": "^2.0.2",
|
|
"circomlibjs": "^0.0.8",
|
|
"download": "^8.0.0",
|
|
"ethereum-waffle": "^3.4.0",
|
|
"ethers": "^5.5.3",
|
|
"hardhat": "^2.8.3",
|
|
"hardhat-deploy": "^0.9.28",
|
|
"js-logger": "^1.6.1",
|
|
"snarkjs": "^0.4.12",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"config": {
|
|
"paths": {
|
|
"contracts": "./contracts",
|
|
"circuit": "./circuit",
|
|
"tests": "./test",
|
|
"cache": "./cache",
|
|
"deploy": "./deploy",
|
|
"deployments": "./deployments",
|
|
"build": {
|
|
"snark": "./build/snark",
|
|
"contracts": "./build/contracts"
|
|
}
|
|
}
|
|
}
|
|
}
|