-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "zodpress",
"version": "1.0.1",
"author": "strblr",
"license": "MIT",
"description": "Tiny superset of Express for strongly typed, contract-first API development. Supports OpenAPI, request validation, nested routers, and regular Express for incremental adoption.",
"homepage": "https://github.com/strblr/zodpress",
"bugs": {
"url": "https://github.com/strblr/zodpress/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/strblr/zodpress.git"
},
"main": "dist/zodpress/index.js",
"types": "dist/zodpress/index.d.ts",
"exports": {
".": {
"types": "./dist/zodpress/index.d.ts",
"default": "./dist/zodpress/index.js"
},
"./zod": {
"types": "./dist/zod/index.d.ts",
"default": "./dist/zod/index.js"
}
},
"scripts": {
"prepublishOnly": "tsc",
"dev": "tsx watch src/__demo__/index.ts",
"build": "tsc",
"start": "node dist/__demo__/index.js",
"test": "vitest --typecheck",
"test:coverage": "vitest run --typecheck --coverage"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@vitest/coverage-v8": "^2.1.8",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"express": "^4.21.2",
"zod": "^3.24.1"
}
}