-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "circomkit",
"version": "0.3.1",
"description": "A Circom testing & development environment",
"author": "erhant",
"license": "MIT",
"scripts": {
"build": "pkgroll",
"prebuild": "rm -rf dist/",
"cli:nb": "node ./dist/cli.cjs",
"cli": "pnpm build && pnpm cli:nb",
"test": "jest",
"check": "npx tsc --noEmit",
"lint": "npx eslint '**/*.ts' && echo 'All good!'",
"format": "npx prettier --check ./src/**/*.ts ./tests/**/*.ts"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"bin": "./dist/cli.js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"peerDependencies": {
"@types/snarkjs": "^0.7.x",
"snarkjs": "^0.7.x"
},
"dependencies": {
"circom_tester": "^0.0.19",
"commander": "^12.0.0",
"loglevel": "^1.8.1"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"ethers": "^6.4.0",
"hardhat": "^2.14.0",
"jest": "^29.7.0",
"pkgroll": "^2.0.2",
"prettier": "^3.1.0",
"solc": "^0.8.25",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"printWidth": 120
},
"keywords": [
"circom",
"zero knowledge",
"snarkjs",
"typescript",
"cli",
"tooling",
"blockchain"
],
"homepage": "https://github.com/erhant/circomkit#readme",
"repository": {
"type": "git",
"url": "https://github.com/erhant/circomkit.git"
},
"bugs": {
"url": "https://github.com/erhant/circomkit/issues/"
}
}