-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
47
48
49
50
51
52
{
"name": "@salim-m/zod-express-middleware",
"version": "1.0.1",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salim-m/zod-express-middleware.git"
},
"keywords": [
"zod",
"express",
"middleware",
"validation"
],
"author": "Salim AlMajzoub",
"license": "ISC",
"bugs": {
"url": "https://github.com/salim-m/zod-express-middleware/issues"
},
"homepage": "https://github.com/salim-m/zod-express-middleware#readme",
"description": "",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/express": "^4.17.21",
"express": "^4.19.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"zod": "^3.23.8"
},
"files": [
"dist",
"*.md"
]
}