-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.48 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@nahkies/typescript-express-runtime",
"version": "0.22.0",
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-express template",
"license": "MIT",
"author": {
"name": "Michael Nahkies",
"email": "support@nahkies.co.nz"
},
"homepage": "https://openapi-code-generator.nahkies.co.nz/",
"repository": {
"type": "git",
"url": "https://github.com/mnahkies/openapi-code-generator.git",
"directory": "packages/typescript-express-runtime"
},
"bugs": {
"url": "https://github.com/mnahkies/openapi-code-generator/issues"
},
"exports": {
"./errors": {
"require": "./dist/errors.js",
"import": "./dist/errors.js",
"types": "./dist/errors.d.ts"
},
"./server": {
"require": "./dist/server.js",
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./joi": {
"require": "./dist/joi.js",
"import": "./dist/joi.js",
"types": "./dist/joi.d.ts"
},
"./zod-v3": {
"require": "./dist/zod-v3.js",
"import": "./dist/zod-v3.js",
"types": "./dist/zod-v3.d.ts"
},
"./zod-v4": {
"require": "./dist/zod-v4.js",
"import": "./dist/zod-v4.js",
"types": "./dist/zod-v4.d.ts"
}
},
"scripts": {
"clean": "rm -rf ./dist && rm tsconfig.tsbuildinfo",
"dev": "nodemon --watch ./src -e ts --delay 2 --exec 'pnpm build'",
"build": "tsc -p ./tsconfig.json",
"test": "jest"
},
"dependencies": {
"@nahkies/typescript-common-runtime": "workspace:^",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"joi": "^17.13.3 || ^18.0.1",
"zod": "^3.25.74 || ^4.1.12"
},
"peerDependenciesMeta": {
"cors": {
"optional": true
},
"joi": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"body-parser": "^2.2.2",
"jest": "^30.2.0",
"joi": "^18.0.2",
"typescript": "^5.9.3",
"zod": "^3.25.74"
},
"files": [
"src",
"dist",
"README.md",
"CHANGELOG.md",
"tsconfig.json"
],
"keywords": [
"@nahkies/openapi-code-generator",
"runtime",
"typescript-express",
"express",
"zod"
],
"publishConfig": {
"access": "public"
}
}