This repository was archived by the owner on Jul 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@map-colonies/openapi-helpers",
"version": "4.0.0",
"description": "A package that provides utilities for working with openapi files",
"exports": {
"./requestSender": {
"default": "./dist/requestSender/requestSender.js",
"types": "./dist/requestSender/requestSender.d.ts"
},
"./typedRequestHandler": {
"default": "./dist/typedRequestHandler/typedRequestHandler.js",
"types": "./dist/typedRequestHandler/typedRequestHandler.d.ts"
},
"./generators": {
"import": "./dist/generator/index.mjs",
"types": "./dist/generator/index.d.mts"
}
},
"bin": "./dist/cli/entrypoint.mjs",
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tsc --project tsconfig.test.json && jest --config=./tests/configurations/jest.config.js",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"generate:test:types": "npm run build && node dist/generator/generateTypes.mjs tests/openapi3.yaml tests/types.d.ts",
"clean": "rimraf dist",
"prepublish": "npm run build",
"prepack": "npm run build",
"prepare": "husky",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/openapi-helpers.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/openapi-helpers/issues"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/MapColonies/openapi-helpers#readme",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^14.1.1",
"@commander-js/extra-typings": "^14.0.0",
"@map-colonies/read-pkg": "^1.0.0",
"change-case": "^5.4.4",
"commander": "^14.0.0",
"oas-normalize": "^14.1.2",
"ora": "^8.2.0",
"ts-essentials": "^10.1.1",
"yaml": "^2.8.0"
},
"peerDependencies": {
"@types/express": "^4.17.21",
"openapi-typescript": "^7.4.1",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@map-colonies/commitlint-config": "^1.1.1",
"@map-colonies/eslint-config": "^6.0.0",
"@map-colonies/infra-copilot-instructions": "^1.2.0",
"@map-colonies/tsconfig": "^1.0.1",
"@swc/core": "^1.13.2",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/supertest": "^6.0.3",
"body-parser": "^2.2.0",
"commitlint": "^19.8.1",
"eslint": "^9.22.0",
"eslint-plugin-jest": "^28.14.0",
"expect-type": "^1.2.2",
"express": "^5.1.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"pretty-quick": "^4.2.2",
"rimraf": "^6.0.1",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
}
}