-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "snarkit",
"version": "0.0.11",
"description": "A command line tool to test circom circuit with given inputs/outputs",
"main": "./dist/index.js",
"bin": {
"snarkit": "./dist/cli.js"
},
"build": "npx tsc",
"scripts": {
"fmt": "npx prettier --write \"**/*.{js,ts}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"docker": "docker buildx build --platform linux/amd64 --load -t fluidex/snarkit ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluidex/snarkit.git"
},
"keywords": [
"circom",
"zk-snark"
],
"author": "lispczz",
"license": "ISC",
"bugs": {
"url": "https://github.com/fluidex/snarkit/issues"
},
"homepage": "https://github.com/fluidex/snarkit#readme",
"dependencies": {
"@iden3/binfileutils": "^0.0.8",
"chai": "^4.3.4",
"circom": "^0.5.42",
"circom_runtime": "^0.1.12",
"commander": "^7.2.0",
"ffiasm": "^0.1.1",
"ffjavascript": "^0.2.35",
"r1csfile": "0.0.16",
"shelljs": "^0.8.4",
"snarkjs": "^0.3.60",
"systeminformation": "^5.6.10",
"tmp-promise": "^3.0.2",
"walk-sync": "^2.2.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}