-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@orpc/openapi",
"type": "module",
"version": "1.13.13",
"license": "MIT",
"homepage": "https://orpc.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/middleapi/orpc.git",
"directory": "packages/openapi"
},
"keywords": [
"orpc"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./plugins": {
"types": "./dist/plugins/index.d.mts",
"import": "./dist/plugins/index.mjs",
"default": "./dist/plugins/index.mjs"
},
"./standard": {
"types": "./dist/adapters/standard/index.d.mts",
"import": "./dist/adapters/standard/index.mjs",
"default": "./dist/adapters/standard/index.mjs"
},
"./fetch": {
"types": "./dist/adapters/fetch/index.d.mts",
"import": "./dist/adapters/fetch/index.mjs",
"default": "./dist/adapters/fetch/index.mjs"
},
"./node": {
"types": "./dist/adapters/node/index.d.mts",
"import": "./dist/adapters/node/index.mjs",
"default": "./dist/adapters/node/index.mjs"
},
"./fastify": {
"types": "./dist/adapters/fastify/index.d.mts",
"import": "./dist/adapters/fastify/index.mjs",
"default": "./dist/adapters/fastify/index.mjs"
},
"./aws-lambda": {
"types": "./dist/adapters/aws-lambda/index.d.mts",
"import": "./dist/adapters/aws-lambda/index.mjs",
"default": "./dist/adapters/aws-lambda/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts",
"./plugins": "./src/plugins/index.ts",
"./standard": "./src/adapters/standard/index.ts",
"./fetch": "./src/adapters/fetch/index.ts",
"./node": "./src/adapters/node/index.ts",
"./fastify": "./src/adapters/fastify/index.ts",
"./aws-lambda": "./src/adapters/aws-lambda/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"dependencies": {
"@orpc/client": "workspace:*",
"@orpc/contract": "workspace:*",
"@orpc/interop": "workspace:*",
"@orpc/openapi-client": "workspace:*",
"@orpc/server": "workspace:*",
"@orpc/shared": "workspace:*",
"@orpc/standard-server": "workspace:*",
"json-schema-typed": "^8.0.2",
"rou3": "^0.8.1"
},
"devDependencies": {
"fastify": "^5.8.3",
"zod": "^4.3.6"
}
}