-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.9 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.9 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@orpc/server",
"type": "module",
"version": "1.13.6",
"license": "MIT",
"homepage": "https://orpc.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/middleapi/orpc.git",
"directory": "packages/server"
},
"keywords": [
"orpc"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./helpers": {
"types": "./dist/helpers/index.d.mts",
"import": "./dist/helpers/index.mjs",
"default": "./dist/helpers/index.mjs"
},
"./plugins": {
"types": "./dist/plugins/index.d.mts",
"import": "./dist/plugins/index.mjs",
"default": "./dist/plugins/index.mjs"
},
"./hibernation": {
"types": "./dist/hibernation/index.d.mts",
"import": "./dist/hibernation/index.mjs",
"default": "./dist/hibernation/index.mjs"
},
"./standard": {
"types": "./dist/adapters/standard/index.d.mts",
"import": "./dist/adapters/standard/index.mjs",
"default": "./dist/adapters/standard/index.mjs"
},
"./standard-peer": {
"types": "./dist/adapters/standard-peer/index.d.mts",
"import": "./dist/adapters/standard-peer/index.mjs",
"default": "./dist/adapters/standard-peer/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"
},
"./websocket": {
"types": "./dist/adapters/websocket/index.d.mts",
"import": "./dist/adapters/websocket/index.mjs",
"default": "./dist/adapters/websocket/index.mjs"
},
"./crossws": {
"types": "./dist/adapters/crossws/index.d.mts",
"import": "./dist/adapters/crossws/index.mjs",
"default": "./dist/adapters/crossws/index.mjs"
},
"./ws": {
"types": "./dist/adapters/ws/index.d.mts",
"import": "./dist/adapters/ws/index.mjs",
"default": "./dist/adapters/ws/index.mjs"
},
"./bun-ws": {
"types": "./dist/adapters/bun-ws/index.d.mts",
"import": "./dist/adapters/bun-ws/index.mjs",
"default": "./dist/adapters/bun-ws/index.mjs"
},
"./message-port": {
"types": "./dist/adapters/message-port/index.d.mts",
"import": "./dist/adapters/message-port/index.mjs",
"default": "./dist/adapters/message-port/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts",
"./helpers": "./src/helpers/index.ts",
"./plugins": "./src/plugins/index.ts",
"./hibernation": "./src/hibernation/index.ts",
"./standard": "./src/adapters/standard/index.ts",
"./standard-peer": "./src/adapters/standard-peer/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",
"./websocket": "./src/adapters/websocket/index.ts",
"./crossws": "./src/adapters/crossws/index.ts",
"./ws": "./src/adapters/ws/index.ts",
"./bun-ws": "./src/adapters/bun-ws/index.ts",
"./message-port": "./src/adapters/message-port/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b"
},
"peerDependencies": {
"crossws": ">=0.3.4",
"ws": ">=8.18.1"
},
"peerDependenciesMeta": {
"crossws": {
"optional": true
},
"ws": {
"optional": true
}
},
"dependencies": {
"@orpc/client": "workspace:*",
"@orpc/contract": "workspace:*",
"@orpc/interop": "workspace:*",
"@orpc/shared": "workspace:*",
"@orpc/standard-server": "workspace:*",
"@orpc/standard-server-aws-lambda": "workspace:*",
"@orpc/standard-server-fastify": "workspace:*",
"@orpc/standard-server-fetch": "workspace:*",
"@orpc/standard-server-node": "workspace:*",
"@orpc/standard-server-peer": "workspace:*",
"cookie": "^1.1.1"
},
"devDependencies": {
"@tanstack/router-core": "^1.166.2",
"@types/ws": "^8.18.1",
"crossws": "^0.4.4",
"fastify": "^5.8.1",
"next": "^16.1.6",
"supertest": "^7.1.4",
"ws": "^8.18.3",
"zod": "^4.3.6"
}
}