@orpc/zod 0.0.0-next.d42488d → 0.0.0-next.d5f0415
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 +132 -0
- package/dist/index.js +72 -55
- package/dist/src/coercer.d.ts +10 -4
- package/dist/src/converter.d.ts +6 -0
- package/dist/src/schemas.d.ts +1 -1
- package/package.json +7 -3
package/README.md
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
<div align="center">
|
2
|
+
<image align="center" src="https://orpc.unnoq.com/logo.webp" width=280 />
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<h1></h1>
|
6
|
+
|
7
|
+
<div align="center">
|
8
|
+
<a href="https://codecov.io/gh/unnoq/orpc">
|
9
|
+
<img alt="codecov" src="https://codecov.io/gh/unnoq/orpc/branch/main/graph/badge.svg">
|
10
|
+
</a>
|
11
|
+
<a href="https://www.npmjs.com/package/@orpc/zod">
|
12
|
+
<img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Fzod?logo=npm" />
|
13
|
+
</a>
|
14
|
+
<a href="https://github.com/unnoq/orpc/blob/main/LICENSE">
|
15
|
+
<img alt="MIT License" src="https://img.shields.io/github/license/unnoq/orpc?logo=open-source-initiative" />
|
16
|
+
</a>
|
17
|
+
<a href="https://discord.gg/TXEbwRBvQn">
|
18
|
+
<img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
|
19
|
+
</a>
|
20
|
+
</div>
|
21
|
+
|
22
|
+
<h3 align="center">Typesafe APIs Made Simple 🪄</h3>
|
23
|
+
|
24
|
+
**oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards, ensuring a smooth and enjoyable developer experience.
|
25
|
+
|
26
|
+
---
|
27
|
+
|
28
|
+
## Highlights
|
29
|
+
|
30
|
+
- **End-to-End Type Safety 🔒**: Ensure complete type safety from inputs to outputs and errors, bridging server and client seamlessly.
|
31
|
+
- **First-Class OpenAPI 📄**: Adheres to the OpenAPI standard out of the box, ensuring seamless integration and comprehensive API documentation.
|
32
|
+
- **Contract-First Development 📜**: (Optional) Define your API contract upfront and implement it with confidence.
|
33
|
+
- **Exceptional Developer Experience ✨**: Enjoy a streamlined workflow with robust typing and clear, in-code documentation.
|
34
|
+
- **Multi-Runtime Support 🌍**: Run your code seamlessly on Cloudflare, Deno, Bun, Node.js, and more.
|
35
|
+
- **Framework Integrations 🧩**: Supports Tanstack Query (React, Vue), Pinia Colada, and more.
|
36
|
+
- **Server Actions ⚡️**: Fully compatible with React Server Actions on Next.js, TanStack Start, and more.
|
37
|
+
- **Standard Schema Support 🗂️**: Effortlessly work with Zod, Valibot, ArkType, and others right out of the box.
|
38
|
+
- **Fast & Lightweight 💨**: Built on native APIs across all runtimes – optimized for speed and efficiency.
|
39
|
+
- **Native Types 📦**: Enjoy built-in support for Date, File, Blob, BigInt, URL and more with no extra setup.
|
40
|
+
- **Lazy Router ⏱️**: Improve cold start times with our lazy routing feature.
|
41
|
+
- **SSE & Streaming 📡**: Provides SSE and streaming features – perfect for real-time notifications and AI-powered streaming responses.
|
42
|
+
- **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
|
43
|
+
- **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
|
44
|
+
- **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
|
45
|
+
- **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
|
46
|
+
|
47
|
+
## Documentation
|
48
|
+
|
49
|
+
You can find the full documentation [here](https://orpc.unnoq.com).
|
50
|
+
|
51
|
+
## Packages
|
52
|
+
|
53
|
+
- [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
|
54
|
+
- [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
|
55
|
+
- [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
|
56
|
+
- [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
|
57
|
+
- [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
|
58
|
+
- [@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.
|
60
|
+
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
61
|
+
|
62
|
+
## `@orpc/zod`
|
63
|
+
|
64
|
+
More schemas that [Zod](https://zod.dev/) doesn't support yet, and provides `ZodToJsonSchemaConverter` for generating OpenAPI specs.
|
65
|
+
|
66
|
+
### More Schemas
|
67
|
+
|
68
|
+
- `oz.url`: Zod schema for [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) instance.
|
69
|
+
- `oz.blob`: Zod schema for [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) instance.
|
70
|
+
- `oz.file`: Zod schema for [File](https://developer.mozilla.org/en-US/docs/Web/API/File) instance.
|
71
|
+
- `oz.regexp`: Zod schema for [RegExp](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) instance.
|
72
|
+
|
73
|
+
```ts
|
74
|
+
import { oz } from '@orpc/zod'
|
75
|
+
import { z } from 'zod'
|
76
|
+
|
77
|
+
const Example = z.object({
|
78
|
+
url: oz.url(),
|
79
|
+
blob: oz.blob(),
|
80
|
+
file: oz.file().type('image/png'),
|
81
|
+
regexp: oz.regexp(),
|
82
|
+
})
|
83
|
+
```
|
84
|
+
|
85
|
+
### Generate OpenAPI Spec
|
86
|
+
|
87
|
+
```ts
|
88
|
+
import { OpenAPIGenerator } from '@orpc/openapi'
|
89
|
+
import { ZodToJsonSchemaConverter } from '@orpc/zod'
|
90
|
+
|
91
|
+
const openAPIGenerator = new OpenAPIGenerator({
|
92
|
+
schemaConverters: [new ZodToJsonSchemaConverter()],
|
93
|
+
})
|
94
|
+
|
95
|
+
const specFromContract = await openAPIGenerator.generate(contract, {
|
96
|
+
info: {
|
97
|
+
title: 'My App',
|
98
|
+
version: '0.0.0',
|
99
|
+
},
|
100
|
+
})
|
101
|
+
|
102
|
+
const specFromRouter = await openAPIGenerator.generate(router, {
|
103
|
+
info: {
|
104
|
+
title: 'My App',
|
105
|
+
version: '0.0.0',
|
106
|
+
},
|
107
|
+
})
|
108
|
+
```
|
109
|
+
|
110
|
+
### Extending the Specification
|
111
|
+
|
112
|
+
```ts
|
113
|
+
import { oz } from '@orpc/zod'
|
114
|
+
import { z } from 'zod'
|
115
|
+
|
116
|
+
const InputSchema = oz.openapi(
|
117
|
+
z.object({
|
118
|
+
name: z.string(),
|
119
|
+
}),
|
120
|
+
{
|
121
|
+
examples: [
|
122
|
+
{ name: 'Earth' },
|
123
|
+
{ name: 'Mars' },
|
124
|
+
],
|
125
|
+
// additional options...
|
126
|
+
}
|
127
|
+
)
|
128
|
+
```
|
129
|
+
|
130
|
+
## License
|
131
|
+
|
132
|
+
Distributed under the MIT License. See [LICENSE](https://github.com/unnoq/orpc/blob/main/LICENSE) for more information.
|
package/dist/index.js
CHANGED
@@ -1,44 +1,58 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
function
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
var guard = (func, shouldGuard) => {
|
16
|
-
const _guard = (err) => {
|
17
|
-
if (shouldGuard && !shouldGuard(err))
|
18
|
-
throw err;
|
19
|
-
return void 0;
|
20
|
-
};
|
21
|
-
const isPromise2 = (result) => result instanceof Promise;
|
22
|
-
try {
|
23
|
-
const result = func();
|
24
|
-
return isPromise2(result) ? result.catch(_guard) : result;
|
25
|
-
} catch (err) {
|
26
|
-
return _guard(err);
|
1
|
+
var __create = Object.create;
|
2
|
+
var __defProp = Object.defineProperty;
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
8
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
9
|
+
};
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
12
|
+
for (let key of __getOwnPropNames(from))
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
27
15
|
}
|
16
|
+
return to;
|
28
17
|
};
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
19
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
20
|
+
// file that has been converted to a CommonJS file using a Babel-
|
21
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
22
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
23
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
24
|
+
mod
|
25
|
+
));
|
26
|
+
|
27
|
+
// ../../node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js
|
28
|
+
var require_escape_string_regexp = __commonJS({
|
29
|
+
"../../node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js"(exports, module) {
|
30
|
+
"use strict";
|
31
|
+
module.exports = (string) => {
|
32
|
+
if (typeof string !== "string") {
|
33
|
+
throw new TypeError("Expected a string");
|
34
|
+
}
|
35
|
+
return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d");
|
36
|
+
};
|
37
|
+
}
|
38
|
+
});
|
29
39
|
|
30
40
|
// src/coercer.ts
|
41
|
+
import { guard, isObject } from "@orpc/shared";
|
31
42
|
import {
|
32
43
|
ZodFirstPartyTypeKind
|
33
44
|
} from "zod";
|
34
|
-
var
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
45
|
+
var ZodSmartCoercionPlugin = class {
|
46
|
+
init(options) {
|
47
|
+
options.clientInterceptors ??= [];
|
48
|
+
options.clientInterceptors.unshift((options2) => {
|
49
|
+
const inputSchema = options2.procedure["~orpc"].inputSchema;
|
50
|
+
if (!inputSchema || inputSchema["~standard"].vendor !== "zod") {
|
51
|
+
return options2.next();
|
52
|
+
}
|
53
|
+
const coercedInput = zodCoerceInternal(inputSchema, options2.input, { bracketNotation: true });
|
54
|
+
return options2.next({ ...options2, input: coercedInput });
|
55
|
+
});
|
42
56
|
}
|
43
57
|
};
|
44
58
|
function zodCoerceInternal(schema, value, options) {
|
@@ -125,7 +139,7 @@ function zodCoerceInternal(schema, value, options) {
|
|
125
139
|
if (value === void 0) {
|
126
140
|
return [];
|
127
141
|
}
|
128
|
-
if (
|
142
|
+
if (isObject(value) && Object.keys(value).every((k) => /^[1-9]\d*$/.test(k) || k === "0")) {
|
129
143
|
const indexes = Object.keys(value).map((k) => Number(k)).sort((a, b) => a - b);
|
130
144
|
const arr = Array.from({ length: (indexes.at(-1) ?? -1) + 1 });
|
131
145
|
for (const i of indexes) {
|
@@ -136,7 +150,7 @@ function zodCoerceInternal(schema, value, options) {
|
|
136
150
|
}
|
137
151
|
} else if (typeName === ZodFirstPartyTypeKind.ZodObject) {
|
138
152
|
const schema_ = schema;
|
139
|
-
if (
|
153
|
+
if (isObject(value)) {
|
140
154
|
const newObj = {};
|
141
155
|
const keys = /* @__PURE__ */ new Set([
|
142
156
|
...Object.keys(value),
|
@@ -174,7 +188,7 @@ function zodCoerceInternal(schema, value, options) {
|
|
174
188
|
if (value === void 0) {
|
175
189
|
return /* @__PURE__ */ new Set();
|
176
190
|
}
|
177
|
-
if (
|
191
|
+
if (isObject(value) && Object.keys(value).every((k) => /^[1-9]\d*$/.test(k) || k === "0")) {
|
178
192
|
const indexes = Object.keys(value).map((k) => Number(k)).sort((a, b) => a - b);
|
179
193
|
const arr = Array.from({ length: (indexes.at(-1) ?? -1) + 1 });
|
180
194
|
for (const i of indexes) {
|
@@ -197,9 +211,9 @@ function zodCoerceInternal(schema, value, options) {
|
|
197
211
|
if (value === void 0) {
|
198
212
|
return /* @__PURE__ */ new Map();
|
199
213
|
}
|
200
|
-
if (
|
214
|
+
if (isObject(value)) {
|
201
215
|
const arr = Array.from({ length: Object.keys(value).length }).fill(void 0).map(
|
202
|
-
(_, i) =>
|
216
|
+
(_, i) => isObject(value[i]) && Object.keys(value[i]).length === 2 && "0" in value[i] && "1" in value[i] ? [value[i]["0"], value[i]["1"]] : void 0
|
203
217
|
);
|
204
218
|
if (arr.every((v) => !!v)) {
|
205
219
|
return new Map(
|
@@ -213,7 +227,7 @@ function zodCoerceInternal(schema, value, options) {
|
|
213
227
|
}
|
214
228
|
} else if (typeName === ZodFirstPartyTypeKind.ZodRecord) {
|
215
229
|
const schema_ = schema;
|
216
|
-
if (
|
230
|
+
if (isObject(value)) {
|
217
231
|
const newObj = {};
|
218
232
|
for (const [k, v] of Object.entries(value)) {
|
219
233
|
const key = zodCoerceInternal(schema_._def.keyType, k, options_);
|
@@ -341,17 +355,8 @@ function zodCoerceInternal(schema, value, options) {
|
|
341
355
|
}
|
342
356
|
|
343
357
|
// src/converter.ts
|
358
|
+
var import_escape_string_regexp = __toESM(require_escape_string_regexp(), 1);
|
344
359
|
import { JSONSchemaFormat } from "@orpc/openapi";
|
345
|
-
|
346
|
-
// ../../node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js
|
347
|
-
function escapeStringRegexp(string) {
|
348
|
-
if (typeof string !== "string") {
|
349
|
-
throw new TypeError("Expected a string");
|
350
|
-
}
|
351
|
-
return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d");
|
352
|
-
}
|
353
|
-
|
354
|
-
// src/converter.ts
|
355
360
|
import {
|
356
361
|
ZodFirstPartyTypeKind as ZodFirstPartyTypeKind2
|
357
362
|
} from "zod";
|
@@ -528,6 +533,16 @@ function zodToJsonSchema(schema, options) {
|
|
528
533
|
return {};
|
529
534
|
}
|
530
535
|
const schema__ = schema;
|
536
|
+
if (!options?.isHandledZodDescription && "description" in schema__._def) {
|
537
|
+
const json = zodToJsonSchema(schema__, {
|
538
|
+
...options,
|
539
|
+
isHandledZodDescription: true
|
540
|
+
});
|
541
|
+
return {
|
542
|
+
description: schema__._def.description,
|
543
|
+
...json
|
544
|
+
};
|
545
|
+
}
|
531
546
|
if (!options?.isHandledCustomJSONSchema) {
|
532
547
|
const customJSONSchema = getCustomJSONSchema(schema__._def, options);
|
533
548
|
if (customJSONSchema) {
|
@@ -541,7 +556,7 @@ function zodToJsonSchema(schema, options) {
|
|
541
556
|
};
|
542
557
|
}
|
543
558
|
}
|
544
|
-
const childOptions = { ...options, isHandledCustomJSONSchema: false };
|
559
|
+
const childOptions = { ...options, isHandledCustomJSONSchema: false, isHandledZodDescription: false };
|
545
560
|
const customType = getCustomZodType(schema__._def);
|
546
561
|
switch (customType) {
|
547
562
|
case "Blob": {
|
@@ -601,13 +616,13 @@ function zodToJsonSchema(schema, options) {
|
|
601
616
|
json.maxLength = check.value;
|
602
617
|
break;
|
603
618
|
case "includes":
|
604
|
-
json.pattern =
|
619
|
+
json.pattern = (0, import_escape_string_regexp.default)(check.value);
|
605
620
|
break;
|
606
621
|
case "startsWith":
|
607
|
-
json.pattern = `^${
|
622
|
+
json.pattern = `^${(0, import_escape_string_regexp.default)(check.value)}`;
|
608
623
|
break;
|
609
624
|
case "endsWith":
|
610
|
-
json.pattern = `${
|
625
|
+
json.pattern = `${(0, import_escape_string_regexp.default)(check.value)}$`;
|
611
626
|
break;
|
612
627
|
case "emoji":
|
613
628
|
json.pattern = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
@@ -714,6 +729,7 @@ function zodToJsonSchema(schema, options) {
|
|
714
729
|
const schema_ = schema__;
|
715
730
|
const def = schema_._def;
|
716
731
|
const json = { type: "array" };
|
732
|
+
json.items = zodToJsonSchema(def.type, childOptions);
|
717
733
|
if (def.exactLength) {
|
718
734
|
json.maxItems = def.exactLength.value;
|
719
735
|
json.minItems = def.exactLength.value;
|
@@ -946,7 +962,8 @@ export {
|
|
946
962
|
NON_LOGIC_KEYWORDS,
|
947
963
|
UNDEFINED_JSON_SCHEMA,
|
948
964
|
UNSUPPORTED_JSON_SCHEMA,
|
949
|
-
|
965
|
+
ZodSmartCoercionPlugin as ZodAutoCoercePlugin,
|
966
|
+
ZodSmartCoercionPlugin,
|
950
967
|
ZodToJsonSchemaConverter,
|
951
968
|
blob,
|
952
969
|
file,
|
package/dist/src/coercer.d.ts
CHANGED
@@ -1,6 +1,12 @@
|
|
1
|
-
import type {
|
2
|
-
import type {
|
3
|
-
|
4
|
-
|
1
|
+
import type { Context } from '@orpc/server';
|
2
|
+
import type { Plugin } from '@orpc/server/plugins';
|
3
|
+
import type { StandardHandlerOptions } from '@orpc/server/standard';
|
4
|
+
export declare class ZodSmartCoercionPlugin<TContext extends Context> implements Plugin<TContext> {
|
5
|
+
init(options: StandardHandlerOptions<TContext>): void;
|
5
6
|
}
|
7
|
+
export {
|
8
|
+
/**
|
9
|
+
* @deprecated ZodAutoCoercePlugin has renamed to ZodSmartCoercionPlugin
|
10
|
+
*/
|
11
|
+
ZodSmartCoercionPlugin as ZodAutoCoercePlugin, };
|
6
12
|
//# sourceMappingURL=coercer.d.ts.map
|
package/dist/src/converter.d.ts
CHANGED
@@ -35,6 +35,12 @@ export interface ZodToJsonSchemaOptions {
|
|
35
35
|
* @internal
|
36
36
|
*/
|
37
37
|
isHandledCustomJSONSchema?: boolean;
|
38
|
+
/**
|
39
|
+
* Track if current level schema is handled zod description to prevent recursive
|
40
|
+
*
|
41
|
+
* @internal
|
42
|
+
*/
|
43
|
+
isHandledZodDescription?: boolean;
|
38
44
|
}
|
39
45
|
export declare function zodToJsonSchema(schema: StandardSchemaV1, options?: ZodToJsonSchemaOptions): Exclude<JSONSchema.JSONSchema, boolean>;
|
40
46
|
export declare class ZodToJsonSchemaConverter implements SchemaConverter {
|
package/dist/src/schemas.d.ts
CHANGED
@@ -10,7 +10,7 @@ export declare function getCustomJSONSchema(def: ZodTypeDef, options?: {
|
|
10
10
|
mode?: 'input' | 'output';
|
11
11
|
}): Exclude<JSONSchema, boolean> | undefined;
|
12
12
|
export declare function file(params?: string | CustomParams | ((input: unknown) => CustomParams)): ZodType<InstanceType<typeof File>, ZodTypeDef, InstanceType<typeof File>> & {
|
13
|
-
type
|
13
|
+
type(mimeType: string, params?: string | CustomParams | ((input: unknown) => CustomParams)): ZodEffects<ZodType<InstanceType<typeof File>, ZodTypeDef, InstanceType<typeof File>>, InstanceType<typeof File>, InstanceType<typeof File>>;
|
14
14
|
};
|
15
15
|
export declare function blob(params?: string | CustomParams | ((input: unknown) => CustomParams)): ZodType<InstanceType<typeof Blob>, ZodTypeDef, InstanceType<typeof Blob>>;
|
16
16
|
export declare function invalidDate(params?: string | CustomParams | ((input: unknown) => CustomParams)): ZodType<Date, ZodTypeDef, Date>;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orpc/zod",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.0-next.
|
4
|
+
"version": "0.0.0-next.d5f0415",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -29,12 +29,16 @@
|
|
29
29
|
"dist"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@orpc/openapi": "0.0.0-next.
|
32
|
+
"@orpc/openapi": "0.0.0-next.d5f0415",
|
33
|
+
"@orpc/contract": "0.0.0-next.d5f0415",
|
34
|
+
"@orpc/server": "0.0.0-next.d5f0415"
|
33
35
|
},
|
34
36
|
"dependencies": {
|
37
|
+
"@standard-schema/spec": "^1.0.0",
|
35
38
|
"json-schema-typed": "^8.0.1",
|
36
39
|
"wildcard-match": "^5.1.3",
|
37
|
-
"zod": "^3.24.1"
|
40
|
+
"zod": "^3.24.1",
|
41
|
+
"@orpc/shared": "0.0.0-next.d5f0415"
|
38
42
|
},
|
39
43
|
"scripts": {
|
40
44
|
"build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
|