-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.99 KB
/
package.json
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
{
"name": "oas-tszod-gen",
"version": "0.0.4",
"files": [
"./dist",
"./LICENSE",
"./package.json",
"./README.md"
],
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"description": "A code generator to convert OpenApi version 3 (OAS3) specifications into endpoint caller functions for TS and Zod.",
"scripts": {
"buildAndPublish:newPatchVersion": "npm run build && npm version patch && npm publish",
"build": "node ./scripts/remove-build-folder.js && tsc --project tsconfig.build.json && tsc-alias --project tsconfig.build.json && node ./scripts/copy-templates-to-build-folder.js",
"build:examples": "node ./scripts/generate-example-outputs.js && eslint --fix --quiet ./examples/outputs",
"ci": "npm run test:withCoverage && tsc && eslint --fix --quiet",
"ci:prepareCommit": "npm run test && tsc && eslint --fix ./src/oas3 && eslint --fix ./src/templates && npm run build && npm run build:examples",
"lint": "eslint",
"lint:fix": "tsc && eslint --fix",
"test": "jest",
"test:withCoverage": "jest --ci --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inkognitro/oas-tszod-gen.git"
},
"keywords": [
"oas-tszod-gen",
"open api",
"swagger code generator",
"oas3",
"zod generator",
"oas3 code generator",
"oas to ts",
"oas to zod"
],
"author": "Marcel Fischer",
"license": "MIT",
"bugs": {
"url": "https://github.com/inkognitro/oas-tszod-gen/issues"
},
"homepage": "https://github.com/inkognitro/oas-tszod-gen#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "20.8.2",
"@types/qs": "^6.9.15",
"express": "^4.21.0",
"gts": "^5.2.0",
"jest": "^29.7.0",
"multer": "^1.4.5-lts.1",
"qs": "^6.13.0",
"ts-jest": "^29.1.2",
"tsc-alias": "^1.8.10"
},
"dependencies": {
"zod": "^3.23.8"
},
"peerDependencies": {
"axios": "^1.7.7",
"typescript": "^5.2.0"
}
}