-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.11 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
{
"name": "@balise/swagger-client-generator",
"version": "0.0.3b",
"description": "Swagger Client Generator is a tool that enables developers to easily parse Swagger API specification files and generate code bindings that are type safe using the popular validation library Zod and the flexible HTTP client Wretch. Swagger Client Generator makes it easy to generate high-quality code that is both scalable and maintainable.",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --exec ts-node parser.ts --ignore serialized.ts",
"test": "ts-node index.ts",
"build": "tsc"
},
"author": "balise",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.2",
"typescript": "^5.1.3"
},
"dependencies": {
"prettier": "2.8.7",
"wretch": "^2.5.2",
"zod": "^3.21.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaliseCode/SwaggerClientGenerator.git"
},
"bugs": {
"url": "https://github.com/BaliseCode/SwaggerClientGenerator/issues"
},
"homepage": "https://github.com/BaliseCode/SwaggerClientGenerator#readme"
}