-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@orpc/zod",
"type": "module",
"version": "1.4.5",
"license": "MIT",
"homepage": "https://orpc.unnoq.com",
"repository": {
"type": "git",
"url": "git+https://github.com/unnoq/orpc.git",
"directory": "packages/zod"
},
"keywords": [
"unnoq",
"orpc"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./zod4": {
"types": "./dist/zod4/index.d.mts",
"import": "./dist/zod4/index.mjs",
"default": "./dist/zod4/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts",
"./zod4": "./src/zod4/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"peerDependencies": {
"@orpc/contract": "workspace:*",
"@orpc/server": "workspace:*",
"zod": ">=3.24.2"
},
"dependencies": {
"@orpc/openapi": "workspace:*",
"@orpc/shared": "workspace:*",
"escape-string-regexp": "^5.0.0",
"wildcard-match": "^5.1.3"
},
"devDependencies": {
"zod": "^3.25.49",
"zod-to-json-schema": "^3.24.5"
}
}