wagmi-extended 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wagmi-extended",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A library providing extended hooks on top of Wagmi with additional features.",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"author": "Srdjan Rakic <bans.cowboy@gmail.com>",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"scripts": {
|
|
32
|
-
"
|
|
32
|
+
"clean": "rimraf dist",
|
|
33
|
+
"build": "npm run clean && npm version minor && rollup -c --bundleConfigAsCjs",
|
|
33
34
|
"prepublishOnly": "npm run build"
|
|
34
35
|
},
|
|
35
36
|
"peerDependencies": {
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
45
46
|
"@types/node": "^22.14.0",
|
|
46
47
|
"@types/react": "^19.1.0",
|
|
48
|
+
"rimraf": "^6.0.1",
|
|
47
49
|
"rollup": "^4.39.0",
|
|
48
50
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
49
51
|
"typescript": "^5.0.0"
|