forked from projectsophon/hardhat-circom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.76 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
69
70
71
72
73
74
{
"name": "hardhat-circom",
"version": "3.3.2",
"description": "Hardhat plugin to integrate Circom and SnarkJS into your build process.",
"author": "Jacob Rosenthal <[email protected]>",
"repository": "projectsophon/hardhat-circom",
"license": "GPL-3.0",
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "tsc -p .",
"lint": "eslint .",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"format": "prettier --write .",
"build": "tsc",
"watch": "tsc -w"
},
"dependencies": {
"@phated/unionfs": "^4.5.0",
"bl": "^6.0.0",
"camelcase": "^6.3.0",
"circom": "0.5.46",
"circom2": "^0.2.10",
"circom_runtime": "0.1.21",
"debug": "^4.3.4",
"ffjavascript": "0.2.56",
"memfs": "^3.4.8",
"r1csfile": "0.0.41",
"shimmer": "^1.2.1",
"snarkjs": "^0.5.0",
"undici": "^5.12.0"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"devDependencies": {
"@projectsophon/eslint-config": "0.0.2",
"@projectsophon/prettier-config": "0.0.0",
"@projectsophon/tsconfig": "0.0.0",
"@types/bl": "^5.0.2",
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/shimmer": "^1.0.2",
"chai": "^4.3.6",
"eslint": "^7.25.0",
"hardhat": "^2.9.1",
"mocha": "^8.0.1",
"prettier": "^2.5.1",
"ts-node": "^8.1.0",
"typescript": "4.2.x"
},
"prettier": "@projectsophon/prettier-config",
"eslintConfig": {
"extends": "@projectsophon/eslint-config"
},
"keywords": [
"snarkjs",
"iden3",
"circom",
"hardhat",
"hardhat-plugin"
]
}