-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 KB
/
package.json
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
{
"name": "nestjs-graphql-zod",
"version": "3.4.1",
"description": "A library for integrating zod validation objects into nestjs graphql objects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prepublish": "tsc",
"build": "tsc",
"build-watch": "tsc --watch",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incetarik/nestjs-graphql-zod.git"
},
"keywords": [
"nestjs",
"zod",
"resolver",
"decorator",
"graphql",
"validation"
],
"author": "Tarık İnce <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/incetarik/nestjs-graphql-zod/issues"
},
"homepage": "https://github.com/incetarik/nestjs-graphql-zod#readme",
"peerDependencies": {
"@nestjs/graphql": ">= 10.0",
"@nestjs/core": ">= 8.0",
"class-transformer": ">= 0.5.1",
"@nestjs/common": ">= 8.0",
"rxjs": ">= 7.5.5",
"zod": ">= 3.15",
"reflect-metadata": ">= 0.1.13",
"graphql": ">= 16.3.0"
},
"devDependencies": {
"typescript": "4.9.5",
"release-it": "*"
}
}