-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
28 lines (28 loc) · 940 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
28
{
"name": "practice_ffi",
"version": "1.0.0",
"description": "**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**",
"main": "print.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run compile:circuits && npm run setup && npm run compile",
"compile": "forge build",
"compile:circuits": "mkdir -p build && circom circuits/withdraw.circom --r1cs --wasm -o build && circom circuits/deposit.circom --r1cs --wasm -o build",
"setup": "sh quickSetup.sh",
"info": "snarkjs info -r build/withdraw.r1cs && snarkjs info -r build/deposit.r1cs",
"test": "forge test -vvv --gas-report",
"format": "forge fmt",
"lint": "forge fmt check"
},
"author": "",
"license": "ISC",
"dependencies": {
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"ethers": "^5.5.4",
"snarkjs": "^0.7.1"
}
}