-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
43
44
45
{
"name": "@api-typer/core",
"version": "0.1.3",
"type": "module",
"description": "Define Express routes with Zod schemas and auto-generate a typed React Query client and OpenAPI spec",
"author": "Inas",
"license": "MIT",
"keywords": ["express", "zod", "openapi", "react-query", "orval", "typescript", "codegen", "rpc", "rest"],
"repository": {
"type": "git",
"url": "https://github.com/inas-sirhan/api-typer.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"express": "^5.0.0",
"zod": "^3.0.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"orval": "^7.11.2",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@orval/core": "^7.11.2",
"@types/express": "^5.0.2",
"@types/node": "^22.17.2",
"express": "^5.1.0",
"tsup": "^8.5.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"zod": "^3.25.67"
}
}