@hanzo/commerce 7.7.4 → 7.8.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 +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/commerce",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.0",
|
|
4
4
|
"description": "e-commerce framework.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -52,25 +52,25 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"ethers": "^6.
|
|
55
|
+
"ethers": "^6.17.0",
|
|
56
56
|
"next-usequerystate": "^1.20.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@hanzo/ui": ">=8.25.
|
|
60
|
-
"@hookform/resolvers": "
|
|
61
|
-
"@radix-ui/react-radio-group": "
|
|
62
|
-
"lucide-react": ">=
|
|
63
|
-
"mobx": ">=7
|
|
64
|
-
"mobx-react-lite": ">=5
|
|
65
|
-
"mobx-utils": "
|
|
66
|
-
"next": ">=16
|
|
67
|
-
"react": ">=19
|
|
68
|
-
"react-dom": ">=19
|
|
69
|
-
"react-hook-form": ">=7
|
|
70
|
-
"zod": "
|
|
59
|
+
"@hanzo/ui": ">=8.25.5",
|
|
60
|
+
"@hookform/resolvers": ">=5",
|
|
61
|
+
"@radix-ui/react-radio-group": ">=1",
|
|
62
|
+
"lucide-react": ">=1",
|
|
63
|
+
"mobx": ">=7",
|
|
64
|
+
"mobx-react-lite": ">=5",
|
|
65
|
+
"mobx-utils": ">=6",
|
|
66
|
+
"next": ">=16",
|
|
67
|
+
"react": ">=19",
|
|
68
|
+
"react-dom": ">=19",
|
|
69
|
+
"react-hook-form": ">=7",
|
|
70
|
+
"zod": ">=4"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@hanzo/ui": "8.25.
|
|
73
|
+
"@hanzo/ui": "8.25.5",
|
|
74
74
|
"@types/react": "19.2.18",
|
|
75
75
|
"@types/react-dom": "19.2.5",
|
|
76
76
|
"cross-fetch": "^4.1.0",
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"lat": "npm show @hanzo/commerce version",
|
|
86
86
|
"pub": "npm publish",
|
|
87
87
|
"tc": "tsc --noEmit",
|
|
88
|
-
"build": "tsc --outDir dist --declaration --emitDeclarationOnly false --module ESNext --esModuleInterop true --skipLibCheck true --sourceMap true"
|
|
88
|
+
"build": "pnpm clean && tsc --outDir dist --declaration --emitDeclarationOnly false --module ESNext --esModuleInterop true --skipLibCheck true --sourceMap true",
|
|
89
|
+
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\""
|
|
89
90
|
}
|
|
90
91
|
}
|