-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 807 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 807 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-typescript-cli",
"author": "zhutaiyang <cngeekee@gmail.com>",
"homepage": "https://www.zhuty.com/posts/openapi-typescript-cli-intro/",
"version": "2.2.5",
"description": "The most elegant OpenAPI(swagger) to TypeScript code generation tool",
"main": "index.js",
"bin": {
"openapi-typescript-cli": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cnvoid/openapi-typescript-cli.git"
},
"scripts": {
"test": "openapi-typescript-cli -f ./api.json"
},
"keywords": [
"openapi",
"swaggertocode",
"swagger2code",
"openapi2code",
"swagger2typescript",
"openapi2typescript"
],
"license": "MIT",
"dependencies": {
"axios": "^1.8.3",
"commander": "^13.1.0",
"node-fetch": "^2.7.0"
}
}