-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "@sunodo/wagmi-plugin-hardhat-deploy",
"version": "0.3.0",
"description": "@wagmi/cli plugin for Hardhat Deploy exports",
"main": "src/index.ts",
"author": "Danilo Tuler",
"license": "Apache-2.0",
"repository": "sunodo/wagmi-plugin-hardhat-deploy",
"scripts": {
"build": "tsup"
},
"type": "module",
"exports": "./dist/index.js",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.0",
"@wagmi/cli": "^2.0.3",
"abitype": "^0.10.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@wagmi/core": ">=2.0.0",
"abitype": ">=0.10.0",
"typescript": ">=5.0.4",
"wagmi": ">=2.0.0"
},
"peerDependenciesMeta": {
"@wagmi/core": {
"optional": true
},
"typescript": {
"optional": true
},
"wagmi": {
"optional": true
}
},
"files": [
"dist"
]
}