forked from tokamak-network/DEPRECATED-Tokamak-ZkEVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "unigroth",
"type": "module",
"version": "0.0.2",
"description": "Universial groth16 implementation forked from snarkjs",
"main": "./build/cli.cjs",
"module": "./main.js",
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
},
"scripts": {
"test": "mocha",
"build": "rollup -c config/rollup.cjs.config.js",
"buildcli": "rollup -c config/rollup.cli.config.js",
"buildiife": "BROWSER=true rollup -c config/rollup.iife.config.js",
"buildiifemin": "BROWSER=true rollup -c config/rollup.iife_min.config.js"
},
"bin": {
"unigroth": "build/cli.cjs"
},
"dependencies": {
"@ethereumjs/blockchain": "^6.2.1",
"@ethereumjs/evm": "^1.3.1",
"@ethereumjs/statemanager": "^1.0.4",
"@ethereumjs/util": "^8.0.5",
"@ethereumjs/vm": "^6.4.1",
"@iden3/binfileutils": "0.0.11",
"app-root-path": "^3.1.0",
"bfj": "^7.0.2",
"blake2b-wasm": "^2.4.0",
"circom_runtime": "0.1.18",
"circomlib": "^2.0.5",
"ejs": "^3.1.6",
"ethereum-cryptography": "^1.2.0",
"ethers": "^5.6.0",
"fastfile": "0.0.20",
"ffjavascript": "0.2.55",
"fs": "^0.0.1-security",
"fuzzy": "^0.1.3",
"glob": "^8.1.0",
"inquirer": "^8.2.5",
"inquirer-autocomplete-prompt": "^2.0.0",
"js-sha3": "^0.8.0",
"logplease": "^1.2.15",
"r1csfile": "0.0.36",
"sha3": "^2.1.4",
"valid-filename": "^3.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"chai": "^4.3.7",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"rollup": "^2.36.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.6.0"
}
}