forked from privacy-scaling-explorations/zkey-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1013 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "zkey-manager",
"version": "0.1.2",
"description": "A convenient way for developers to manage the .zkey files from circom circuits, for production and testing.",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "tsc"
},
"bin": {
"zkey-manager": "build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appliedzkp/zkey-manager.git"
},
"keywords": [
"snarkjs",
"circom"
],
"author": "Koh Wei Jie",
"license": "MIT",
"bugs": {
"url": "https://github.com/appliedzkp/zkey-manager/issues"
},
"homepage": "https://github.com/appliedzkp/zkey-manager#readme",
"dependencies": {
"argparse": "2.0.1",
"circomlib": "^2.0.0",
"shelljs": "0.8.5",
"js-yaml": "4.1.0",
"snarkjs": "^0.7.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"ffjavascript": "^0.2.33",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}