-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 813 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 813 Bytes
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
{
"name": "openapi-client-generator",
"version": "1.1.2",
"description": "Generates zod schemas and type types for a OpenAPI specification",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"generate-api": "dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "pnpm run build && node dist/main.js -i http://localhost:8080/v3/api-docs -o ./__generated__"
},
"repository": {
"type": "git",
"url": "https://github.com/vhellman/openapi-apiclient"
},
"dependencies": {
"node-fetch": "^3.3.2",
"yargs": "^17.7.2",
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"openapi-types": "^12.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"keywords": [],
"author": "Viktor Hellman",
"license": "ISC"
}