-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@type_of/use-wagmi-contracts",
"version": "0.0.11",
"description": "Convert Solidity ABIs into a ready-to-consume React utility functions",
"keywords": [
"react",
"solidity",
"wagmi",
"viem"
],
"license": "MIT",
"author": {
"name": "Daniel Cortes"
},
"main": "dist/esm/index.mjs",
"type": "module",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dgca/use-wagmi-contracts"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "vitest run"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"typescript": ">=5.0.0",
"viem": ">=0.3.0",
"wagmi": ">=1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/react": "^18.2.20",
"abitype": "^0.9.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"type-fest": "^4.2.0",
"typescript": "^5.1.6",
"viem": "^1.6.0",
"vitest": "^0.34.1",
"wagmi": "^1.3.10"
}
}