-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
47 lines (47 loc) · 1003 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
43
44
45
46
47
{
"name": "circom_runtime",
"version": "0.1.28",
"description": "Circom runtime",
"type": "module",
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
},
"main": "./build/main.cjs",
"module": "./main.js",
"scripts": {
"test": "mocha --exit",
"build": "rollup -c rollup.cjs.config.js"
},
"bin": {
"calcwit": "calcwit.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/circom_runtime.git"
},
"keywords": [
"circom",
"runtime",
"zksnarks",
"witness",
"wasm"
],
"author": "Jordi Baylina",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iden3/circom_runtime/issues"
},
"homepage": "https://github.com/iden3/circom_runtime#readme",
"dependencies": {
"ffjavascript": "0.3.1"
},
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^8.17.0",
"fastfile": "^0.0.20",
"mocha": "^10.7.3",
"rollup": "^2.39.1",
"snarkjs": "^0.7.4"
}
}