kubb 5.0.0-beta.77 → 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.
Files changed (2) hide show
  1. package/README.md +8 -9
  2. 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 from a schema: Kubb produces TypeScript types, type-safe API clients, [TanStack Query](https://github.com/TanStack/query) hooks for React and Vue, [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.
60
- - Plug in input formats through adapters like [`@kubb/adapter-oas`](https://npmx.dev/package/@kubb/adapter-oas), with TypeScript-first output that runs on Node.js and Bun.
61
- - Pick what you generate from the [plugin ecosystem](https://github.com/kubb-labs/plugins): `plugin-ts`, `plugin-axios`, `plugin-fetch`, `plugin-react-query`, `plugin-vue-query`, `plugin-swr`, `plugin-zod`, `plugin-faker`, `plugin-msw`, `plugin-cypress`, `plugin-redoc`, and `plugin-mcp`. Enable only the ones a project needs.
62
- - Choose your HTTP client: use the axios or fetch presets, or point at a custom client module so generated requests run through your own wrapper.
63
- - Control the generated tree: group files by tag, emit barrel exports, and include or exclude operations to keep the output focused.
64
- - Build your own output with custom plugins, adapters, and the JSX-based renderer (`@kubb/renderer-jsx`) for full control over what lands on disk.
65
- - Hook into your bundler with `unplugin-kubb`, which runs generation inside [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 other build tools.
66
- - Drive generation from AI tools through the built-in Model Context Protocol (MCP) server, which works with [Claude](https://claude.ai), [Cursor](https://cursor.sh), and other MCP-compatible assistants.
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.77",
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.77",
53
- "@kubb/cli": "5.0.0-beta.77",
54
- "@kubb/core": "5.0.0-beta.77",
55
- "@kubb/mcp": "5.0.0-beta.77",
56
- "@kubb/parser-md": "5.0.0-beta.77",
57
- "@kubb/parser-ts": "5.0.0-beta.77",
58
- "@kubb/plugin-barrel": "5.0.0-beta.77",
59
- "@kubb/renderer-jsx": "5.0.0-beta.77"
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",