kubb 5.0.0-beta.78 → 5.0.0-beta.79
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 +8 -9
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -56,15 +56,14 @@ See the [documentation](https://kubb.dev) for detailed usage and advanced featur
|
|
|
56
56
|
|
|
57
57
|
## Features
|
|
58
58
|
|
|
59
|
-
- Generate
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
- Build your own output with custom plugins, adapters, and the JSX
|
|
65
|
-
-
|
|
66
|
-
- Drive generation from AI tools
|
|
67
|
-
- Generate from inside [Claude Code](https://kubb.dev/docs/5.x/ai/claude) with the Kubb plugin, which adds slash commands, a config skill, and an agent that run the Kubb CLI.
|
|
59
|
+
- Generate TypeScript types, type-safe clients, [TanStack Query](https://github.com/TanStack/query) and [SWR](https://github.com/vercel/swr) hooks, [Zod](https://github.com/colinhacks/zod) validators, [Faker](https://github.com/faker-js/faker) mocks, and [MSW](https://github.com/mswjs/msw) handlers from one schema.
|
|
60
|
+
- Generate a typed [axios](https://axios-http.com/) or [Fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) client with status-keyed results, auth, validation, file uploads, server-sent events, interceptors, and a swappable transport.
|
|
61
|
+
- Read OpenAPI 2.0, 3.0, and 3.1 through adapters like [`@kubb/adapter-oas`](https://npmx.dev/package/@kubb/adapter-oas), with output for Node.js and Bun.
|
|
62
|
+
- Enable only the [plugins](https://github.com/kubb-labs/plugins) you need: `plugin-ts`, `plugin-axios`, `plugin-fetch`, `plugin-react-query`, `plugin-vue-query`, `plugin-swr`, `plugin-zod`, `plugin-faker`, `plugin-msw`, `plugin-cypress`, `plugin-redoc`, `plugin-mcp`.
|
|
63
|
+
- Shape the output by grouping files by tag, including or excluding operations, and writing to disk, memory, or a custom storage backend.
|
|
64
|
+
- Build your own output with custom plugins, adapters, and the JSX renderer (`@kubb/renderer-jsx`).
|
|
65
|
+
- Run generation in your bundler with `unplugin-kubb` for [Vite](https://github.com/vitejs/vite), [Nuxt](https://github.com/nuxt/nuxt), [Astro](https://github.com/withastro/astro), [webpack](https://github.com/webpack/webpack), and more.
|
|
66
|
+
- Drive generation from AI tools over the built-in MCP server ([Claude](https://claude.ai), [Cursor](https://cursor.sh)) or inside [Claude Code](https://kubb.dev/docs/5.x/ai/claude).
|
|
68
67
|
|
|
69
68
|
## Supporting Kubb
|
|
70
69
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubb",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.79",
|
|
4
4
|
"description": "The meta framework for code generation. Point Kubb at a schema and it generates types, clients, hooks, validators, mocks, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api-client",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"registry": "https://registry.npmjs.org/"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@kubb/adapter-oas": "5.0.0-beta.
|
|
53
|
-
"@kubb/cli": "5.0.0-beta.
|
|
54
|
-
"@kubb/core": "5.0.0-beta.
|
|
55
|
-
"@kubb/mcp": "5.0.0-beta.
|
|
56
|
-
"@kubb/parser-md": "5.0.0-beta.
|
|
57
|
-
"@kubb/parser-ts": "5.0.0-beta.
|
|
58
|
-
"@kubb/plugin-barrel": "5.0.0-beta.
|
|
59
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
52
|
+
"@kubb/adapter-oas": "5.0.0-beta.79",
|
|
53
|
+
"@kubb/cli": "5.0.0-beta.79",
|
|
54
|
+
"@kubb/core": "5.0.0-beta.79",
|
|
55
|
+
"@kubb/mcp": "5.0.0-beta.79",
|
|
56
|
+
"@kubb/parser-md": "5.0.0-beta.79",
|
|
57
|
+
"@kubb/parser-ts": "5.0.0-beta.79",
|
|
58
|
+
"@kubb/plugin-barrel": "5.0.0-beta.79",
|
|
59
|
+
"@kubb/renderer-jsx": "5.0.0-beta.79"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"typescript": "^6.0.3",
|