-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@spielworksdev/hardhat-plugin",
"version": "2.0.0",
"description": "Plugins for Hardhat",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wombat-tech/hardhat-plugin.git"
},
"keywords": [
"hardhat",
"ethereum"
],
"author": "Spielworks GmbH <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/wombat-tech/hardhat-plugin/issues"
},
"homepage": "https://github.com/wombat-tech/hardhat-plugin#readme",
"files": [
"README.md",
"dist/"
],
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@spielworksdev/eslint-config": "^1.2.0",
"@types/mocha": "^10.0.1",
"eslint": "^8.46.0",
"ethers": "^6.6.7",
"hardhat": "^2.17.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"ethers": "^6.6.7",
"hardhat": "^2.17.0"
}
}