-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 839 Bytes
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
{
"name": "entros-circuits",
"version": "0.1.0",
"private": true,
"scripts": {
"setup": "./scripts/setup.sh",
"test": "tsx ./node_modules/mocha/bin/mocha.js --exit -t 120000 \"test/**/*.test.ts\"",
"prove": "./scripts/prove.sh",
"verify": "./scripts/verify.sh",
"export-vk": "node scripts/parse_vk_to_rust.js keys/verification_key.json keys/"
},
"overrides": {
"serialize-javascript": ">=7.0.3",
"diff": ">=7.0.0",
"brace-expansion": "^2.0.3",
"picomatch": "^2.3.2"
},
"dependencies": {
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"snarkjs": "^0.7.6"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"chai": "^4.5.0",
"mocha": "^11.7.5",
"tsx": "^4.22.4",
"typescript": "^6.0.2"
}
}