@kubb/plugin-ts 4.1.2 → 4.1.4
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 +18 -17
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,30 +1,29 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
+
<h1>Plugin TypeScript</h1>
|
|
3
|
+
<a href="https://kubb.dev" target="_blank" rel="noopener noreferrer">
|
|
4
|
+
<img width="180" src="https://raw.githubusercontent.com/kubb-labs/kubb/main/assets/logo.png" alt="Kubb logo">
|
|
5
|
+
</a>
|
|
2
6
|
|
|
3
|
-
<!-- <img src="assets/logo.png" alt="logo" width="200" height="auto" /> -->
|
|
4
|
-
<h1>@kubb/plugin-ts</h1>
|
|
5
|
-
|
|
6
|
-
<p>
|
|
7
|
-
Swagger integration for TypeScript to generate all the different types based on an OpenAPI specification.
|
|
8
|
-
</p>
|
|
9
|
-
|
|
10
|
-
<img src="https://raw.githubusercontent.com/kubb-labs/kubb/main/assets/banner.png" alt="logo" height="auto" />
|
|
11
7
|
|
|
12
8
|
[![npm version][npm-version-src]][npm-version-href]
|
|
13
9
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
10
|
[![Coverage][coverage-src]][coverage-href]
|
|
15
11
|
[![License][license-src]][license-href]
|
|
16
|
-
|
|
12
|
+
[![Sponsors][sponsors-src]][sponsors-href]
|
|
17
13
|
<h4>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
14
|
+
<a href="https://codesandbox.io/s/github/kubb-labs/kubb/tree/main//examples/typescript" target="_blank">View Demo</a>
|
|
15
|
+
<span> · </span>
|
|
16
|
+
<a href="https://kubb.dev/" target="_blank">Documentation</a>
|
|
17
|
+
<span> · </span>
|
|
18
|
+
<a href="https://github.com/kubb-labs/kubb/issues/" target="_blank">Report Bug</a>
|
|
19
|
+
<span> · </span>
|
|
20
|
+
<a href="https://github.com/kubb-labs/kubb/issues/" target="_blank">Request Feature</a>
|
|
21
|
+
</h4>
|
|
26
22
|
</div>
|
|
27
23
|
|
|
24
|
+
Swagger integration for TypeScript to generate all the different types based on an OpenAPI specification.
|
|
25
|
+
|
|
26
|
+
|
|
28
27
|
## Supporting Kubb
|
|
29
28
|
|
|
30
29
|
Kubb uses an MIT-licensed open source project with its ongoing development made possible entirely by the support of Sponsors. If you would like to become a sponsor, please consider:
|
|
@@ -52,3 +51,5 @@ Kubb uses an MIT-licensed open source project with its ongoing development made
|
|
|
52
51
|
[minified-href]: https://www.npmjs.com/package/@kubb/plugin-ts
|
|
53
52
|
[coverage-src]: https://img.shields.io/codecov/c/github/kubb-labs/kubb?style=flat&colorA=18181B&colorB=f58517
|
|
54
53
|
[coverage-href]: https://www.npmjs.com/package/@kubb/plugin-ts
|
|
54
|
+
[sponsors-src]: https://img.shields.io/github/sponsors/stijnvanhulle?style=flat&colorA=18181B&colorB=f58517
|
|
55
|
+
[sponsors-href]: https://github.com/sponsors/stijnvanhulle/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-ts",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
"!/**/__tests__/**"
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@kubb/core": "4.1.
|
|
61
|
-
"@kubb/oas": "4.1.
|
|
62
|
-
"@kubb/parser-ts": "4.1.
|
|
63
|
-
"@kubb/plugin-oas": "4.1.
|
|
64
|
-
"@kubb/react": "4.1.
|
|
60
|
+
"@kubb/core": "4.1.4",
|
|
61
|
+
"@kubb/oas": "4.1.4",
|
|
62
|
+
"@kubb/parser-ts": "4.1.4",
|
|
63
|
+
"@kubb/plugin-oas": "4.1.4",
|
|
64
|
+
"@kubb/react": "4.1.4"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@types/react": "^18.3.
|
|
67
|
+
"@types/react": "^18.3.26",
|
|
68
68
|
"react": "^18.3.1",
|
|
69
69
|
"tsdown": "^0.14.2",
|
|
70
70
|
"typescript": "^5.9.3",
|
|
71
|
-
"@kubb/plugin-oas": "4.1.
|
|
71
|
+
"@kubb/plugin-oas": "4.1.4"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"@kubb/react": "^4.0.0"
|