@orpc/standard-server-node 0.0.0-next.b6b0cc3 → 0.0.0-next.b77809d

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 CHANGED
@@ -30,7 +30,8 @@
30
30
  - **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
31
31
  - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
32
32
  - **📝 Contract-First Development**: Optionally define your API contract before implementation.
33
- - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
33
+ - **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
34
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), Pinia Colada, and more.
34
35
  - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
35
36
  - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
36
37
  - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
@@ -38,7 +39,6 @@
38
39
  - **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
39
40
  - **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
40
41
  - **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
41
- - **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
42
42
 
43
43
  ## Documentation
44
44
 
@@ -49,14 +49,13 @@ You can find the full documentation [here](https://orpc.unnoq.com).
49
49
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
50
50
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
51
51
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
52
- - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
52
+ - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
53
+ - [@orpc/otel](https://www.npmjs.com/package/@orpc/otel): [OpenTelemetry](https://opentelemetry.io/) integration for observability.
54
+ - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
53
55
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
54
- - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
55
- - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
56
- - [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
57
- - [@orpc/svelte-query](https://www.npmjs.com/package/@orpc/svelte-query): Integration with [Svelte Query](https://tanstack.com/query/latest/docs/framework/svelte/overview).
56
+ - [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
58
57
  - [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
59
- - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
58
+ - [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
60
59
  - [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
61
60
  - [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): OpenAPI spec generation from [Valibot](https://valibot.dev/).
62
61
  - [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): OpenAPI spec generation from [ArkType](https://arktype.io/).
package/dist/index.d.mts CHANGED
@@ -1,28 +1,13 @@
1
1
  import { StandardBody, StandardHeaders, StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
2
- import { Readable } from 'node:stream';
2
+ import { ToEventIteratorOptions as ToEventIteratorOptions$1, ToEventStreamOptions as ToEventStreamOptions$1 } from '@orpc/standard-server-fetch';
3
+ import Stream, { Readable } from 'node:stream';
3
4
  import { IncomingMessage, ServerResponse } from 'node:http';
4
5
  import { Http2ServerRequest, Http2ServerResponse } from 'node:http2';
5
6
 
6
- declare function toEventIterator(stream: Readable): AsyncIteratorObject<unknown | void, unknown | void, void> & AsyncGenerator<unknown | void, unknown | void, void>;
7
- interface ToEventStreamOptions {
8
- /**
9
- * If true, a ping comment is sent periodically to keep the connection alive.
10
- *
11
- * @default true
12
- */
13
- eventIteratorKeepAliveEnabled?: boolean;
14
- /**
15
- * Interval (in milliseconds) between ping comments sent after the last event.
16
- *
17
- * @default 5000
18
- */
19
- eventIteratorKeepAliveInterval?: number;
20
- /**
21
- * The content of the ping comment. Must not include newline characters.
22
- *
23
- * @default ''
24
- */
25
- eventIteratorKeepAliveComment?: string;
7
+ interface ToEventIteratorOptions extends ToEventIteratorOptions$1 {
8
+ }
9
+ declare function toEventIterator(stream: Readable, options?: ToEventIteratorOptions): AsyncIteratorObject<unknown | void, unknown | void, void> & AsyncGenerator<unknown | void, unknown | void, void>;
10
+ interface ToEventStreamOptions extends ToEventStreamOptions$1 {
26
11
  }
27
12
  declare function toEventStream(iterator: AsyncIterator<unknown | void, unknown | void, void>, options?: ToEventStreamOptions): Readable;
28
13
 
@@ -35,7 +20,9 @@ type NodeHttpRequest = (IncomingMessage | Http2ServerRequest) & {
35
20
  };
36
21
  type NodeHttpResponse = ServerResponse | Http2ServerResponse;
37
22
 
38
- declare function toStandardBody(req: NodeHttpRequest): Promise<StandardBody>;
23
+ interface ToStandardBodyOptions extends ToEventIteratorOptions {
24
+ }
25
+ declare function toStandardBody(req: NodeHttpRequest, options?: ToStandardBodyOptions): Promise<StandardBody>;
39
26
  interface ToNodeHttpBodyOptions extends ToEventStreamOptions {
40
27
  }
41
28
  /**
@@ -45,13 +32,17 @@ interface ToNodeHttpBodyOptions extends ToEventStreamOptions {
45
32
  */
46
33
  declare function toNodeHttpBody(body: StandardBody, headers: StandardHeaders, options?: ToNodeHttpBodyOptions): Readable | undefined | string;
47
34
 
35
+ declare function toStandardMethod(method: string | undefined): string;
36
+
48
37
  declare function toStandardLazyRequest(req: NodeHttpRequest, res: NodeHttpResponse): StandardLazyRequest;
49
38
 
50
39
  interface SendStandardResponseOptions extends ToNodeHttpBodyOptions {
51
40
  }
52
41
  declare function sendStandardResponse(res: NodeHttpResponse, standardResponse: StandardResponse, options?: SendStandardResponseOptions): Promise<void>;
53
42
 
54
- declare function toAbortSignal(res: NodeHttpResponse): AbortSignal;
43
+ declare function toAbortSignal(stream: Stream.Writable): AbortSignal;
44
+
45
+ declare function toStandardUrl(req: NodeHttpRequest): URL;
55
46
 
56
- export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest };
57
- export type { NodeHttpRequest, NodeHttpResponse, SendStandardResponseOptions, ToEventStreamOptions, ToNodeHttpBodyOptions };
47
+ export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest, toStandardMethod, toStandardUrl };
48
+ export type { NodeHttpRequest, NodeHttpResponse, SendStandardResponseOptions, ToEventIteratorOptions, ToEventStreamOptions, ToNodeHttpBodyOptions, ToStandardBodyOptions };
package/dist/index.d.ts CHANGED
@@ -1,28 +1,13 @@
1
1
  import { StandardBody, StandardHeaders, StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
2
- import { Readable } from 'node:stream';
2
+ import { ToEventIteratorOptions as ToEventIteratorOptions$1, ToEventStreamOptions as ToEventStreamOptions$1 } from '@orpc/standard-server-fetch';
3
+ import Stream, { Readable } from 'node:stream';
3
4
  import { IncomingMessage, ServerResponse } from 'node:http';
4
5
  import { Http2ServerRequest, Http2ServerResponse } from 'node:http2';
5
6
 
6
- declare function toEventIterator(stream: Readable): AsyncIteratorObject<unknown | void, unknown | void, void> & AsyncGenerator<unknown | void, unknown | void, void>;
7
- interface ToEventStreamOptions {
8
- /**
9
- * If true, a ping comment is sent periodically to keep the connection alive.
10
- *
11
- * @default true
12
- */
13
- eventIteratorKeepAliveEnabled?: boolean;
14
- /**
15
- * Interval (in milliseconds) between ping comments sent after the last event.
16
- *
17
- * @default 5000
18
- */
19
- eventIteratorKeepAliveInterval?: number;
20
- /**
21
- * The content of the ping comment. Must not include newline characters.
22
- *
23
- * @default ''
24
- */
25
- eventIteratorKeepAliveComment?: string;
7
+ interface ToEventIteratorOptions extends ToEventIteratorOptions$1 {
8
+ }
9
+ declare function toEventIterator(stream: Readable, options?: ToEventIteratorOptions): AsyncIteratorObject<unknown | void, unknown | void, void> & AsyncGenerator<unknown | void, unknown | void, void>;
10
+ interface ToEventStreamOptions extends ToEventStreamOptions$1 {
26
11
  }
27
12
  declare function toEventStream(iterator: AsyncIterator<unknown | void, unknown | void, void>, options?: ToEventStreamOptions): Readable;
28
13
 
@@ -35,7 +20,9 @@ type NodeHttpRequest = (IncomingMessage | Http2ServerRequest) & {
35
20
  };
36
21
  type NodeHttpResponse = ServerResponse | Http2ServerResponse;
37
22
 
38
- declare function toStandardBody(req: NodeHttpRequest): Promise<StandardBody>;
23
+ interface ToStandardBodyOptions extends ToEventIteratorOptions {
24
+ }
25
+ declare function toStandardBody(req: NodeHttpRequest, options?: ToStandardBodyOptions): Promise<StandardBody>;
39
26
  interface ToNodeHttpBodyOptions extends ToEventStreamOptions {
40
27
  }
41
28
  /**
@@ -45,13 +32,17 @@ interface ToNodeHttpBodyOptions extends ToEventStreamOptions {
45
32
  */
46
33
  declare function toNodeHttpBody(body: StandardBody, headers: StandardHeaders, options?: ToNodeHttpBodyOptions): Readable | undefined | string;
47
34
 
35
+ declare function toStandardMethod(method: string | undefined): string;
36
+
48
37
  declare function toStandardLazyRequest(req: NodeHttpRequest, res: NodeHttpResponse): StandardLazyRequest;
49
38
 
50
39
  interface SendStandardResponseOptions extends ToNodeHttpBodyOptions {
51
40
  }
52
41
  declare function sendStandardResponse(res: NodeHttpResponse, standardResponse: StandardResponse, options?: SendStandardResponseOptions): Promise<void>;
53
42
 
54
- declare function toAbortSignal(res: NodeHttpResponse): AbortSignal;
43
+ declare function toAbortSignal(stream: Stream.Writable): AbortSignal;
44
+
45
+ declare function toStandardUrl(req: NodeHttpRequest): URL;
55
46
 
56
- export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest };
57
- export type { NodeHttpRequest, NodeHttpResponse, SendStandardResponseOptions, ToEventStreamOptions, ToNodeHttpBodyOptions };
47
+ export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest, toStandardMethod, toStandardUrl };
48
+ export type { NodeHttpRequest, NodeHttpResponse, SendStandardResponseOptions, ToEventIteratorOptions, ToEventStreamOptions, ToNodeHttpBodyOptions, ToStandardBodyOptions };
package/dist/index.mjs CHANGED
@@ -1,123 +1,42 @@
1
1
  import { Readable } from 'node:stream';
2
- import { createAsyncIteratorObject, parseEmptyableJSON, isTypescriptObject, stringifyJSON, isAsyncIteratorObject, once } from '@orpc/shared';
3
- import { EventDecoderStream, withEventMeta, ErrorEvent, encodeEventMessage, getEventMeta, getFilenameFromContentDisposition, flattenHeader, generateContentDisposition } from '@orpc/standard-server';
2
+ import { runWithSpan, parseEmptyableJSON, isAsyncIteratorObject, stringifyJSON, AbortError, once } from '@orpc/shared';
3
+ import { getFilenameFromContentDisposition, flattenHeader, generateContentDisposition } from '@orpc/standard-server';
4
+ import { toEventIterator as toEventIterator$1, toEventStream as toEventStream$1 } from '@orpc/standard-server-fetch';
4
5
 
5
- function toEventIterator(stream) {
6
- const eventStream = Readable.toWeb(stream).pipeThrough(new TextDecoderStream()).pipeThrough(new EventDecoderStream());
7
- const reader = eventStream.getReader();
8
- return createAsyncIteratorObject(async () => {
9
- while (true) {
10
- const { done, value } = await reader.read();
11
- if (done) {
12
- return { done: true, value: void 0 };
13
- }
14
- switch (value.event) {
15
- case "message": {
16
- let message = parseEmptyableJSON(value.data);
17
- if (isTypescriptObject(message)) {
18
- message = withEventMeta(message, value);
19
- }
20
- return { done: false, value: message };
21
- }
22
- case "error": {
23
- let error = new ErrorEvent({
24
- data: parseEmptyableJSON(value.data)
25
- });
26
- error = withEventMeta(error, value);
27
- throw error;
28
- }
29
- case "done": {
30
- let done2 = parseEmptyableJSON(value.data);
31
- if (isTypescriptObject(done2)) {
32
- done2 = withEventMeta(done2, value);
33
- }
34
- return { done: true, value: done2 };
35
- }
36
- }
37
- }
38
- }, async () => {
39
- await reader.cancel();
40
- });
6
+ function toEventIterator(stream, options = {}) {
7
+ return toEventIterator$1(Readable.toWeb(stream), options);
41
8
  }
42
9
  function toEventStream(iterator, options = {}) {
43
- const keepAliveEnabled = options.eventIteratorKeepAliveEnabled ?? true;
44
- const keepAliveInterval = options.eventIteratorKeepAliveInterval ?? 5e3;
45
- const keepAliveComment = options.eventIteratorKeepAliveComment ?? "";
46
- let cancelled = false;
47
- let timeout;
48
- const stream = new ReadableStream({
49
- async pull(controller) {
50
- try {
51
- if (keepAliveEnabled) {
52
- timeout = setInterval(() => {
53
- controller.enqueue(encodeEventMessage({
54
- comments: [keepAliveComment]
55
- }));
56
- }, keepAliveInterval);
57
- }
58
- const value = await iterator.next();
59
- clearInterval(timeout);
60
- if (cancelled) {
61
- return;
62
- }
63
- const meta = getEventMeta(value.value);
64
- if (!value.done || value.value !== void 0 || meta !== void 0) {
65
- controller.enqueue(encodeEventMessage({
66
- ...meta,
67
- event: value.done ? "done" : "message",
68
- data: stringifyJSON(value.value)
69
- }));
70
- }
71
- if (value.done) {
72
- controller.close();
73
- }
74
- } catch (err) {
75
- clearInterval(timeout);
76
- if (cancelled) {
77
- return;
78
- }
79
- controller.enqueue(encodeEventMessage({
80
- ...getEventMeta(err),
81
- event: "error",
82
- data: err instanceof ErrorEvent ? stringifyJSON(err.data) : void 0
83
- }));
84
- controller.close();
85
- }
86
- },
87
- async cancel() {
88
- cancelled = true;
89
- clearInterval(timeout);
90
- await iterator.return?.();
91
- }
92
- });
93
- return Readable.fromWeb(stream);
10
+ return Readable.fromWeb(toEventStream$1(iterator, options));
94
11
  }
95
12
 
96
- async function toStandardBody(req) {
97
- const contentDisposition = req.headers["content-disposition"];
98
- const contentType = req.headers["content-type"];
99
- if (typeof contentDisposition === "string") {
100
- const fileName = getFilenameFromContentDisposition(contentDisposition) ?? "blob";
101
- return _streamToFile(req, fileName, contentType ?? "");
102
- }
103
- if (!contentType || contentType.startsWith("application/json")) {
104
- const text = await _streamToString(req);
105
- return parseEmptyableJSON(text);
106
- }
107
- if (contentType.startsWith("multipart/form-data")) {
108
- return _streamToFormData(req, contentType);
109
- }
110
- if (contentType.startsWith("application/x-www-form-urlencoded")) {
111
- const text = await _streamToString(req);
112
- return new URLSearchParams(text);
113
- }
114
- if (contentType.startsWith("text/event-stream")) {
115
- return toEventIterator(req);
116
- }
117
- if (contentType.startsWith("text/plain")) {
118
- return _streamToString(req);
119
- }
120
- return _streamToFile(req, "blob", contentType);
13
+ function toStandardBody(req, options = {}) {
14
+ return runWithSpan({ name: "parse_standard_body", signal: options.signal }, async () => {
15
+ const contentDisposition = req.headers["content-disposition"];
16
+ const contentType = req.headers["content-type"];
17
+ if (typeof contentDisposition === "string") {
18
+ const fileName = getFilenameFromContentDisposition(contentDisposition) ?? "blob";
19
+ return _streamToFile(req, fileName, contentType ?? "");
20
+ }
21
+ if (!contentType || contentType.startsWith("application/json")) {
22
+ const text = await _streamToString(req);
23
+ return parseEmptyableJSON(text);
24
+ }
25
+ if (contentType.startsWith("multipart/form-data")) {
26
+ return _streamToFormData(req, contentType);
27
+ }
28
+ if (contentType.startsWith("application/x-www-form-urlencoded")) {
29
+ const text = await _streamToString(req);
30
+ return new URLSearchParams(text);
31
+ }
32
+ if (contentType.startsWith("text/event-stream")) {
33
+ return toEventIterator(req, options);
34
+ }
35
+ if (contentType.startsWith("text/plain")) {
36
+ return _streamToString(req);
37
+ }
38
+ return _streamToFile(req, "blob", contentType);
39
+ });
121
40
  }
122
41
  function toNodeHttpBody(body, headers, options = {}) {
123
42
  const currentContentDisposition = flattenHeader(headers["content-disposition"]);
@@ -143,8 +62,6 @@ function toNodeHttpBody(body, headers, options = {}) {
143
62
  }
144
63
  if (isAsyncIteratorObject(body)) {
145
64
  headers["content-type"] = "text/event-stream";
146
- headers["cache-control"] = "no-cache";
147
- headers.connection = "keep-alive";
148
65
  return toEventStream(body, options);
149
66
  }
150
67
  headers["content-type"] = "application/json";
@@ -173,54 +90,60 @@ async function _streamToFile(stream, fileName, contentType) {
173
90
  return new File(chunks, fileName, { type: contentType });
174
91
  }
175
92
 
176
- function toAbortSignal(res) {
93
+ function toStandardMethod(method) {
94
+ return method ?? "GET";
95
+ }
96
+
97
+ function toAbortSignal(stream) {
177
98
  const controller = new AbortController();
178
- res.on("close", () => {
179
- if (res.errored) {
180
- controller.abort(res.errored.toString());
181
- } else if (!res.writableFinished) {
182
- controller.abort("Client connection prematurely closed.");
183
- } else {
184
- controller.abort("Server closed the connection.");
99
+ stream.once("error", (error) => controller.abort(error));
100
+ stream.once("close", () => {
101
+ if (!stream.writableFinished) {
102
+ controller.abort(new AbortError("Writable stream closed before it finished writing"));
185
103
  }
186
104
  });
187
105
  return controller.signal;
188
106
  }
189
107
 
190
- function toStandardLazyRequest(req, res) {
191
- const method = req.method ?? "GET";
108
+ function toStandardUrl(req) {
192
109
  const protocol = "encrypted" in req.socket && req.socket.encrypted ? "https:" : "http:";
193
110
  const host = req.headers.host ?? "localhost";
194
111
  const url = new URL(req.originalUrl ?? req.url ?? "/", `${protocol}//${host}`);
112
+ return url;
113
+ }
114
+
115
+ function toStandardLazyRequest(req, res) {
116
+ const signal = toAbortSignal(res);
195
117
  return {
196
- method,
197
- url,
118
+ method: toStandardMethod(req.method),
119
+ url: toStandardUrl(req),
198
120
  headers: req.headers,
199
- body: once(() => toStandardBody(req)),
200
- signal: toAbortSignal(res)
121
+ body: once(() => toStandardBody(req, { signal })),
122
+ signal
201
123
  };
202
124
  }
203
125
 
204
126
  function sendStandardResponse(res, standardResponse, options = {}) {
205
127
  return new Promise((resolve, reject) => {
206
- res.on("error", reject);
207
- res.on("finish", resolve);
128
+ res.once("error", reject);
129
+ res.once("close", resolve);
208
130
  const resHeaders = { ...standardResponse.headers };
209
131
  const resBody = toNodeHttpBody(standardResponse.body, resHeaders, options);
210
132
  res.writeHead(standardResponse.status, resHeaders);
211
133
  if (resBody === void 0) {
212
- res.end(resBody);
134
+ res.end();
213
135
  } else if (typeof resBody === "string") {
214
136
  res.end(resBody);
215
137
  } else {
216
- res.on("close", () => {
138
+ res.once("close", () => {
217
139
  if (!resBody.closed) {
218
140
  resBody.destroy(res.errored ?? void 0);
219
141
  }
220
142
  });
143
+ resBody.once("error", (error) => res.destroy(error));
221
144
  resBody.pipe(res);
222
145
  }
223
146
  });
224
147
  }
225
148
 
226
- export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest };
149
+ export { sendStandardResponse, toAbortSignal, toEventIterator, toEventStream, toNodeHttpBody, toStandardBody, toStandardLazyRequest, toStandardMethod, toStandardUrl };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/standard-server-node",
3
3
  "type": "module",
4
- "version": "0.0.0-next.b6b0cc3",
4
+ "version": "0.0.0-next.b77809d",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -23,13 +23,14 @@
23
23
  "dist"
24
24
  ],
25
25
  "dependencies": {
26
- "@orpc/shared": "0.0.0-next.b6b0cc3",
27
- "@orpc/standard-server": "0.0.0-next.b6b0cc3"
26
+ "@orpc/shared": "0.0.0-next.b77809d",
27
+ "@orpc/standard-server-fetch": "0.0.0-next.b77809d",
28
+ "@orpc/standard-server": "0.0.0-next.b77809d"
28
29
  },
29
30
  "devDependencies": {
30
- "@types/node": "^22.15.17",
31
+ "@types/node": "^22.15.30",
31
32
  "@types/supertest": "^6.0.3",
32
- "supertest": "^7.1.0"
33
+ "supertest": "^7.1.4"
33
34
  },
34
35
  "scripts": {
35
36
  "build": "unbuild",