-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hardhat-circom-starter",
"version": "1.0.0",
"description": "ZK-Snarks with Circom, hardhat and typescript",
"author": {
"name": "Ganesh Anantwar",
"email": "[email protected]"
},
"keywords": [
"zk-snarks",
"zksnarks",
"zk-proof",
"circom",
"zksnark",
"zk",
"snarks",
"snark",
"zkp",
"zk-proofs",
"zk-snark",
"zk-snarks",
"plonk",
"powers-of-tau",
"circuits",
"verifier",
"prover",
"BN254",
"BN128",
"alt-bn128"
],
"scripts": {
"install": "bash ./scripts/bash/0_install_circom.sh",
"setup": "bash ./scripts/bash/1_plonk_setup.sh",
"build": "bash ./scripts/bash/2_build_circuits.sh && npx hardhat compile",
"test": "npx hardhat test",
"lint": "echo \"work in progress\""
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@types/node": "^18.15.3",
"hardhat": "^2.12.6"
},
"dependencies": {
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"ffjavascript": "^0.2.63",
"snarkjs": "^0.7.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.10.0"
}
}