-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.51 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.51 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
{
"name": "@openreplyde/nestjs-express-openapi",
"repository": {
"url": "git+https://github.com/OpenReplyDE/nestjs-express-openapi.git"
},
"version": "0.5.2",
"description": "OpenAPI to NestJS Code Generator and Type Helpers",
"license": "MIT",
"main": "dist/index.cjs",
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"bin": {
"openapi-to-typescript": "dist/openapi-to-typescript/cli.js"
},
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && pkgroll --clean-dist",
"deps:update": "ncu -u && npm install",
"format": "npx @biomejs/biome check --write .",
"prepack": "npm run test",
"pretest": "npm run build",
"test": "npm run test:spelling && npm run test:format && npm run test:lint && npm run test:specs",
"test:format": "npx @biomejs/biome format .",
"test:specs": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:spelling": "cspell lint --no-progress '**'",
"test:lint": "npx @biomejs/biome lint --error-on-warnings ."
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "20.15.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@types/express": "^4.0.0 || ^5.0.0",
"@types/yargs": "^17.0.33",
"express": "^4.0.0 || ^5.0.0",
"yargs": ">= 17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"@swc/plugin-transform-imports": "^11.1.0",
"@tsconfig/node20": "^20.1.6",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.1",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/yargs": "^17.0.33",
"cspell": "^9.2.1",
"depcheck": "^1.4.7",
"express": "^5.2.1",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-chance": "^0.2.5",
"npm-check-updates": "^19.1.2",
"pkgroll": "2.20",
"rimraf": "^6.0.1",
"supertest": "^7.1.4",
"typescript": "^5.9.2"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.0.0",
"@types/swagger-ui-express": "^4.1.8",
"express-jwt": "^8.5.1",
"express-openapi-validator": "^5.5.8",
"openapi-typescript": "^7.9.1",
"prettier": "^3.6.2",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.5"
}
}