-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "hardhat-plugin-noir",
"version": "0.1.4",
"description": "Hardhat plugin for Noir language",
"repository": "github:olehmisar/hardhat-noir",
"author": "Oleh Misarosh <olehmisar@gmail.com>",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"noir",
"aztec",
"zero knowledge",
"zk"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "tsc --noEmit && prettier --check 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"prepublishOnly": "pnpm test && pnpm build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@noir-lang/backend_barretenberg": "0.39.0",
"@noir-lang/noir_js": "0.39.0",
"@noir-lang/types": "0.39.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.9",
"chai": "^4.2.0",
"hardhat": "^2.0.0",
"mocha": "^10.7.3",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"dependencies": {
"glob": "^11.0.0",
"zod": "^3.23.8"
}
}