-
-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.8 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
{
"name": "@orpc/nest",
"type": "module",
"version": "1.13.14",
"license": "MIT",
"homepage": "https://orpc.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/middleapi/orpc.git",
"directory": "packages/nest"
},
"keywords": [
"orpc"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
}
},
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "pnpm run build --watch",
"type:check": "tsc -b",
"type:check:test": "tsc -p tsconfig.test.json --noEmit"
},
"peerDependencies": {
"@nestjs/common": ">=11.0.0",
"@nestjs/core": ">=11.0.0",
"express": ">=5.0.0",
"fastify": ">=5.0.0",
"rxjs": ">=7.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
}
},
"dependencies": {
"@orpc/client": "workspace:*",
"@orpc/contract": "workspace:*",
"@orpc/openapi": "workspace:*",
"@orpc/openapi-client": "workspace:*",
"@orpc/server": "workspace:*",
"@orpc/shared": "workspace:*",
"@orpc/standard-server": "workspace:*",
"@orpc/standard-server-fastify": "workspace:*",
"@orpc/standard-server-node": "workspace:*"
},
"devDependencies": {
"@fastify/cookie": "^11.0.2",
"@nestjs/common": "^11.1.16",
"@nestjs/core": "^11.1.18",
"@nestjs/platform-express": "^11.1.16",
"@nestjs/platform-fastify": "^11.1.16",
"@nestjs/testing": "^11.1.16",
"@ts-rest/core": "^3.52.1",
"@types/express": "^5.0.6",
"express": "^5.2.1",
"fastify": "^5.8.3",
"rxjs": "^7.8.2",
"supertest": "^7.1.4",
"zod": "^4.3.6"
}
}