-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 924 Bytes
/
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
{
"name": "sudoku-circom",
"version": "1.0.0",
"description": "Template Circuit Project written in Circom",
"main": "index.js",
"scripts": {
"compile": "bash ./scripts/compile.sh main",
"ptau:fetch": "bash ./scripts/ptau_fetch.sh 14",
"ptau:phase2": "bash ./scripts/ptau_phase2.sh build/ptau/powers_of_tau_14.ptau main",
"witness:generate": "bash ./scripts/witness.sh main",
"proof:generate": "bash ./scripts/proof_generate.sh main",
"build": "yarn compile && yarn ptau:fetch && yarn ptau:phase2 && yarn witness:generate && yarn proof:generate",
"test": "mocha --project tsconfig.json"
},
"author": "Filip Pajić",
"license": "MIT",
"dependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"chai": "^4.3.7",
"circom_tester": "^0.0.19",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}