forked from AngaBlue/express-zod-safe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "express-zod-safe",
"version": "1.3.3",
"description": "TypeScript-friendly middleware designed for Express applications, leveraging the robustness of Zod schemas to validate incoming request bodies, parameters, and queries.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm run clean && tsc",
"lint": "biome check --fix --error-on-warnings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngaBlue/express-zod-safe.git"
},
"keywords": [
"zod",
"express",
"middleware",
"validation",
"guard",
"typesafe"
],
"author": "AngaBlue <contact@anga.blue>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/AngaBlue/express-zod-safe/issues"
},
"homepage": "https://github.com/AngaBlue/express-zod-safe#readme",
"devDependencies": {
"@angablue/biome-config": "^1.0.1",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"zod": "^3.24.1"
},
"peerDependencies": {
"@types/express": "^4.0.0 || ^5.0.0",
"express": "^4.0.0 || ^5.0.0",
"zod": "^3.0.0"
}
}