-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@nestjs-modular/validate",
"version": "1.0.0",
"description": "NestJS pipe that makes it possible to validate incoming requests using schema validation such as Zod or Yup.",
"main": "dist/nestjs-modular-validate.cjs.js",
"module": "dist/nestjs-modular-validate.esm.js",
"types": "dist/nestjs-modular-validate.cjs.d.ts",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"typescript",
"nestjs",
"validation",
"pipe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Karibash/nestjs-modular.git"
},
"author": "Karibash",
"license": "MIT",
"bugs": {
"url": "https://github.com/Karibash/nestjs-modular/issues"
},
"homepage": "https://github.com/Karibash/nestjs-modular/tree/main/packages/validate",
"dependencies": {
"@babel/runtime": "7.20.6",
"@valivali/core": "1.0.0"
},
"devDependencies": {
"@nestjs/common": "9.2.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}