kubb 5.0.0-alpha.73 → 5.0.0-alpha.74

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 +7 -3
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -24,9 +24,13 @@
24
24
 
25
25
  ## Features
26
26
 
27
- <div align="center">
28
- <img src="https://raw.githubusercontent.com/kubb-labs/kubb/main/assets/features.png" alt="features" height="auto" />
29
- </div>
27
+ - Works with Node.js 22+ and TypeScript 6.
28
+ - Convert Swagger 2.0, OpenAPI 3.0, and OpenAPI 3.1 to TypeScript types, API clients, and more via the [plugin ecosystem](https://github.com/kubb-labs/kubb-plugins).
29
+ - Extensible plugin and middleware system for customizing and composing code generation.
30
+ - CLI support with interactive setup, progress bar, and detailed logs.
31
+ - Model Context Protocol (MCP) server for AI assistants like [Claude](https://claude.ai), [Cursor](https://cursor.sh), and other MCP-compatible tools.
32
+ - JSX-based renderer (`@kubb/renderer-jsx`) for building custom plugin output.
33
+ - Barrel file generation via the `@kubb/middleware-barrel` middleware.
30
34
 
31
35
  ## Supporting Kubb
32
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kubb",
3
- "version": "5.0.0-alpha.73",
3
+ "version": "5.0.0-alpha.74",
4
4
  "description": "Transform OpenAPI specifications into TypeScript, React-Query, Zod, Faker.js, MSW and more with a plugin-based code generation tool.",
5
5
  "keywords": [
6
6
  "api-client",
@@ -57,13 +57,13 @@
57
57
  "registry": "https://registry.npmjs.org/"
58
58
  },
59
59
  "dependencies": {
60
- "@kubb/adapter-oas": "5.0.0-alpha.73",
61
- "@kubb/agent": "5.0.0-alpha.73",
62
- "@kubb/cli": "5.0.0-alpha.73",
63
- "@kubb/core": "5.0.0-alpha.73",
64
- "@kubb/mcp": "5.0.0-alpha.73",
65
- "@kubb/middleware-barrel": "5.0.0-alpha.73",
66
- "@kubb/parser-ts": "5.0.0-alpha.73"
60
+ "@kubb/adapter-oas": "5.0.0-alpha.74",
61
+ "@kubb/agent": "5.0.0-alpha.74",
62
+ "@kubb/cli": "5.0.0-alpha.74",
63
+ "@kubb/core": "5.0.0-alpha.74",
64
+ "@kubb/mcp": "5.0.0-alpha.74",
65
+ "@kubb/middleware-barrel": "5.0.0-alpha.74",
66
+ "@kubb/parser-ts": "5.0.0-alpha.74"
67
67
  },
68
68
  "devDependencies": {
69
69
  "typescript": "^6.0.3",