-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "metamask-command-mode",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build .",
"test": "hardhat test",
"clean": "rm -rf artifacts/ cache/ ignition/deployments/ typechain-types/ dist/"
},
"bin": {
"hardhat-completion": "dist/src/completion.js",
"mmc": "dist/src/index.js"
},
"keywords": [],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "3.0.5",
"@types/debug": "^4.1.12",
"@types/semver": "^7.5.8",
"chai": "^4.3.7",
"ethers": "^6.12.0",
"hardhat": "^2.22.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"semver": "^6.3.1"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
}
}