-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "st-open-api",
"version": "1.6.7",
"publishConfig": {
"access": "public"
},
"keywords": [
"open-api",
"swagger",
"client-generator",
"springtype"
],
"description": "Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x",
"repository": {
"type": "git",
"url": "git+https://github.com/springtype-org/st-open-api.git"
},
"scripts": {
"audit-fix": "npm_config_yes=true npx yarn-audit-fix",
"prebuild": "npx st-rm-rf dist",
"start": "node ./dist/cli.js",
"watch": "tsc --watch",
"build": "tsc",
"postbuild": "npx st-cp package.json README.md static template banner.txt dist"
},
"bin": {
"st-open-api": "./cli.js"
},
"author": "Michael Mannseicher, Aron Homberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/springtype-org/st-open-api/issues"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"commander": "^5.1.0",
"mustache": "^4.0.1",
"node-fetch": "^2.6.0",
"openapi-types": "^12.1.3",
"st-cp": "^2.0.0-beta.2",
"st-rm-rf": "^2.0.0-beta.1",
"typescript": "^4.6.3",
"valid-url": "^1.0.9",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/mustache": "^4.0.1",
"@types/node": "^18.15.0",
"@types/node-fetch": "^2.5.6"
},
"bundledDependencies": [
"commander",
"mustache",
"node-fetch",
"st-rm-rf",
"valid-url",
"typescript"
]
}