@orpc/openapi 2.0.0-beta.29 → 2.0.0-beta.30

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 +2 -1
  2. package/package.json +23 -11
package/README.md CHANGED
@@ -54,6 +54,7 @@ You can read the documentation [here](https://orpc.dev).
54
54
  - [@orpc/tanstack-query](https://npmx.dev/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
55
55
  - [@orpc/pinia-colada](https://npmx.dev/package/@orpc/pinia-colada): Integrate with [Pinia Colada](https://pinia-colada.esm.dev/).
56
56
  - [@orpc/swr](https://npmx.dev/package/@orpc/swr): Integrate with [SWR](https://swr.vercel.app/).
57
+ - [@orpc/experimental-msw](https://npmx.dev/package/@orpc/experimental-msw): Mock procedures with [Mock Service Worker](https://mswjs.io/).
57
58
  - [@orpc/experimental-effect](https://npmx.dev/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
58
59
  - [@orpc/nest](https://npmx.dev/package/@orpc/nest): Implement your contract with [NestJS](https://nestjs.com/).
59
60
  - [@orpc/node](https://npmx.dev/package/@orpc/node): [Node.js](https://nodejs.org/) plugins for static file serving and large uploads.
@@ -69,7 +70,7 @@ You can read the documentation [here](https://orpc.dev).
69
70
 
70
71
  ## Sponsors
71
72
 
72
- Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going here: [GitHub Sponsors](https://github.com/sponsors/dinwwwh). Every bit helps! 🚀
73
+ Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going through [GitHub Sponsors](https://github.com/sponsors/dinwwwh) or [Open Collective](https://opencollective.com/middleapi). Every bit helps! 🚀
73
74
 
74
75
  <table>
75
76
  <tr>
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@orpc/openapi",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.29",
4
+ "version": "2.0.0-beta.30",
5
+ "description": "Generate OpenAPI specs from oRPC routers and serve OpenAPI-compliant APIs with end-to-end type safety",
5
6
  "license": "MIT",
6
- "funding": "https://github.com/sponsors/dinwwwh",
7
+ "funding": [
8
+ "https://github.com/sponsors/dinwwwh",
9
+ "https://opencollective.com/middleapi"
10
+ ],
7
11
  "homepage": "https://orpc.dev",
8
12
  "repository": {
9
13
  "type": "git",
@@ -12,7 +16,15 @@
12
16
  },
13
17
  "keywords": [
14
18
  "orpc",
15
- "openapi"
19
+ "rpc",
20
+ "api",
21
+ "typescript",
22
+ "typesafe",
23
+ "openapi",
24
+ "swagger",
25
+ "scalar",
26
+ "json-schema",
27
+ "rest"
16
28
  ],
17
29
  "sideEffects": [
18
30
  "./dist/extensions/route.mjs"
@@ -89,18 +101,18 @@
89
101
  "@standardserver/core": "^0.8.0",
90
102
  "@standardserver/fetch": "^0.8.0",
91
103
  "rou3": "^0.9.1",
92
- "@orpc/client": "2.0.0-beta.29",
93
- "@orpc/contract": "2.0.0-beta.29",
94
- "@orpc/server": "2.0.0-beta.29",
95
- "@orpc/shared": "2.0.0-beta.29",
96
- "@orpc/json-schema": "2.0.0-beta.29"
104
+ "@orpc/client": "2.0.0-beta.30",
105
+ "@orpc/json-schema": "2.0.0-beta.30",
106
+ "@orpc/contract": "2.0.0-beta.30",
107
+ "@orpc/server": "2.0.0-beta.30",
108
+ "@orpc/shared": "2.0.0-beta.30"
97
109
  },
98
110
  "devDependencies": {
99
- "@scalar/api-reference": "^1.64.1",
111
+ "@scalar/api-reference": "^1.65.1",
100
112
  "@standardserver/aws-lambda": "^0.8.0",
101
113
  "@types/swagger-ui": "^5.32.0",
102
- "fastify": "^5.11.3",
103
- "swagger-ui": "^5.32.13",
114
+ "fastify": "^5.12.1",
115
+ "swagger-ui": "^5.32.14",
104
116
  "zod": "^4.4.3"
105
117
  },
106
118
  "scripts": {