-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
120 lines (120 loc) · 3.3 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@solarity/hardhat-zkit",
"version": "0.4.13",
"description": "The ultimate TypeScript environment for Circom development",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dl-solarity/hardhat-zkit.git"
},
"workspaces": [
"test/fixture-projects/*"
],
"keywords": [
"hardhat",
"hardhat-plugin",
"distributedlab",
"solarity",
"circom",
"snarkjs",
"zk",
"zkit"
],
"author": "Distributed Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/dl-solarity/hardhat-zkit/issues"
},
"homepage": "https://github.com/dl-solarity/hardhat-zkit#readme",
"scripts": {
"prepare": "husky",
"compile": "npm run prepare-tests && npm run build",
"build": "tsc --build .",
"prepare-tests": "npm run compile --workspaces",
"test": "npm run test-docker",
"test-docker": "bash scripts/test-docker.sh",
"test-local": "mocha --recursive 'test/**/*.ts' --exit",
"coverage": "npm run coverage-docker",
"coverage-docker": "bash scripts/coverage-docker.sh",
"coverage-local": "nyc mocha --recursive 'test/**/*.ts' --exit",
"clean-tests": "npm run clean --workspaces",
"lint-fix": "prettier --write \"./**/*.ts\" && eslint \"{src,test}/**/*.{js,ts}\" --cache --fix",
"publish-to-npm": "npm run build && npm run lint-fix && npm publish ./ --access public"
},
"nyc": {
"reporter": [
"html",
"text"
]
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@distributedlab/circom-parser": "0.2.0",
"@solarity/zkit": "0.2.6",
"@solarity/zktype": "0.3.1",
"@wasmer/wasi": "0.12.0",
"chalk": "4.1.2",
"cli-progress": "3.12.0",
"cli-table3": "0.6.5",
"debug": "4.3.5",
"lodash": "4.17.21",
"ora": "5.4.1",
"resolve": "1.22.8",
"semver": "7.6.3",
"snarkjs": "0.7.5",
"uuid": "9.0.1",
"zod": "3.23.8",
"is-typed-array": "1.1.13",
"path-browserify": "1.0.1"
},
"peerDependencies": {
"hardhat": "^2.16.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@solarity/chai-zkit": "^0.2.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.12",
"@types/chai-as-promised": "^7.1.8",
"@types/cli-progress": "3.11.5",
"@types/debug": "4.1.12",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "4.17.5",
"@types/mocha": "^10.0.6",
"@types/resolve": "^1.20.6",
"@types/sinon": "^17.0.3",
"@types/snarkjs": "^0.7.8",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"ethers": "6.11.1",
"hardhat": "2.20.1",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "5.3.3"
}
}