-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 995 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 995 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@openapi-codegen/typescript",
"version": "11.2.0",
"description": "OpenAPI Codegen typescript generators",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"url": "https://github.com/fabien0102/openapi-codegen",
"directory": "plugins/typescript"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm --workspace-root tsc -p plugins/typescript/tsconfig.package.json",
"prepublishOnly": "pnpm build"
},
"files": [
"lib",
"README.md"
],
"keywords": [
"openapi",
"codegen",
"plugin",
"typescript"
],
"author": "Fabien Bernard",
"license": "MIT",
"dependencies": {
"case": "^1.6.3",
"lodash": "^4.17.21",
"openapi3-ts": "^4.4.0",
"pluralize": "^8.0.0",
"tslib": "^2.3.1",
"tsutils": "^3.21.0",
"typescript": "4.8.2"
},
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.9.7"
}
}