-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "hardhat-cannon",
"version": "2.21.0",
"description": "Agnostic chain construction. Select the protocols and configuration you need to quickly and easily verify your project",
"author": "Synthetix",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf ./dist",
"prepublishOnly": "pnpm run build"
},
"files": [
"dist",
"src/",
"utils/",
"LICENSE",
"README.md",
"types.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/usecannon/cannon.git",
"directory": "packages/hardhat-cannon"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.2",
"bn.js": "^5.2.1",
"hardhat": "^2.22.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"hardhat": ">=2.0.0"
},
"dependencies": {
"@iarna/toml": "^3.0.0",
"@usecannon/builder": "workspace:*",
"@usecannon/cli": "workspace:*",
"chalk": "^4.1.2",
"debug": "^4.3.6",
"fs-extra": "^11.2.0",
"viem": "^2.21.15"
},
"gitHead": "81979336c4cfe5f1f8ee7677b2b968f886a20a87"
}