-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.91 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
{
"name": "@simply-openapi/controllers",
"version": "2.1.0",
"description": "OpenAPI-first express controllers",
"repository": {
"type": "git",
"url": "git@github.com:SunsetFi/simply-openapi.git"
},
"homepage": "https://simply-openapi.gitbook.io/simply-openapi-controllers/",
"main": "dist/index.js",
"types": "dts/index.d.ts",
"files": [
"/dist",
"/dts",
"/readme.md"
],
"engines": {
"node": ">= 18"
},
"scripts": {
"clean": "rimraf dist dts",
"prebuild": "pnpm run clean",
"build": "tsc -p tsconfig.release.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "jest --coverage",
"format": "prettier --write \"./src/**/*.{ts,js}\"",
"prepublish": "pnpm run build"
},
"keywords": [
"express",
"controller",
"router",
"typescript",
"swagger",
"openapi",
"simply-openapi"
],
"author": "SunsetFi",
"license": "MIT",
"dependencies": {
"@json-schema-spec/json-pointer": "^0.1.2",
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"body-parser": "^1.20.4",
"http-errors": "^2.0.1",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.23",
"openapi3-ts": "^4.5.0",
"type-fest": "^4.41.0",
"type-is": "^1.6.18"
},
"peerDependencies": {
"express": "^4 || ^5",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@jest-mock/express": "^3.0.0",
"@jest/types": "^30.2.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.0",
"@types/http-errors": "^2.0.5",
"@types/jest": "^29.5.14",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.0",
"@types/type-is": "^1.6.7",
"express": "^5.2.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.8.1",
"reflect-metadata": "^0.1.14",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}