@orval/hono 8.0.0-rc.5 → 8.0.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/README.md +1 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
### Code Generation
|
|
13
13
|
|
|
14
|
-
`orval`
|
|
14
|
+
`orval` generates type-safe JS clients (TypeScript) from any valid OpenAPI v3 or Swagger v2 specification, either in `yaml` or `json` formats.
|
|
15
15
|
|
|
16
16
|
`Generate`, `valid`, `cache` and `mock` in your React, Vue, Svelte and Angular applications all with your OpenAPI specification.
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orval/hono",
|
|
3
|
-
"version": "8.0.0
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"nuke": "rimraf .turbo dist node_modules"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@orval/core": "8.0.0
|
|
26
|
-
"@orval/zod": "8.0.0
|
|
25
|
+
"@orval/core": "8.0.0",
|
|
26
|
+
"@orval/zod": "8.0.0",
|
|
27
27
|
"fs-extra": "^11.3.2",
|
|
28
28
|
"remeda": "^2.32.0"
|
|
29
29
|
},
|
|
@@ -34,6 +34,5 @@
|
|
|
34
34
|
"rimraf": "6.1.2",
|
|
35
35
|
"tsdown": "0.18.2",
|
|
36
36
|
"typescript": "5.9.3"
|
|
37
|
-
}
|
|
38
|
-
"stableVersion": "8.0.0-rc.4"
|
|
37
|
+
}
|
|
39
38
|
}
|