-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
66
67
68
{
"name": "@zefi/circomjs",
"version": "1.0.5",
"description": "Automating and easing workflow around developing in the Circom DSL",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"repository": "getZeFi/circomjs",
"scripts": {
"build": "tsc --project tsconfig.json && cp -r src/vendors dist/vendors",
"clean": "rm -rf dist types",
"format": "prettier --write \"**/*.js\" \"**/*.ts\"",
"lint": "eslint .",
"test": "echo 1"
},
"keywords": [
"circom",
"circom-buildtool",
"circomjs",
"zefi",
"zero knowledge",
"zk"
],
"author": "",
"license": "ISC",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"@types/log": "^6.3.0",
"@types/node": "^18.14.5",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^29.4.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.4.3",
"prettier": "^2.8.7",
"r1csfile": "0.0.45",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"dependencies": {
"add": "^2.0.6",
"chai": "^4.3.7",
"ffjavascript": "^0.2.57",
"fnv-plus": "^1.3.1",
"ganache-cli": "^6.12.2",
"i": "^0.3.7",
"log": "^6.3.1",
"log-node": "^8.0.3",
"npm": "^9.5.0",
"snarkjs": "^0.6.1",
"solc": "^0.6.*",
"tmp-promise": "^3.0.3"
},
"files": [
"dist/",
"types/"
]
}