-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@ensi-platform/typescript-openapi-generator",
"version": "1.1.4-beta",
"description": "Generate TS types and react-query hooks from OpenAPIV3 specification\nFor more information use: https://docs.ensi.tech/",
"author": "Ensi",
"bin": {
"ts-openapi-gen": "./bin/run"
},
"private": false,
"scripts": {
"build": "rimraf dist && tsc && node ./scripts/addHeaders.js",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "rimraf oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme"
},
"oclif": {
"bin": "ts-openapi-gen",
"dirname": "ts-openapi-gen",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ensi-platform/typescript-openapi-generator"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": "https://github.com/ensi-platform/typescript-openapi-generator/issues",
"keywords": [
"oclif"
],
"homepage": "https://github.com/ensi-platform/typescript-openapi-generator",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"types": "dist/index.d.ts",
"license": "ISC",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"@inquirer/input": "^1.0.7",
"@inquirer/prompts": "^1.1.3",
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.4.7",
"@openapi-contrib/openapi-schema-to-json-schema": "^4.0.4",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@stoplight/json-schema-ref-parser": "^9.2.4",
"@stoplight/yaml": "^4.2.3",
"add": "^2.0.6",
"case": "^1.6.3",
"code-block-writer": "^12.0.0",
"fastify": "^4.12.0",
"js-yaml": "^4.1.0",
"jsdom": "^22.0.0",
"json-schema": "^0.4.0",
"json-schema-resolver": "^2.0.0",
"json-schema-to-typescript": "^12.0.0",
"kleur": "^4.1.5",
"lodash.keyby": "^4.6.0",
"node-fetch-commonjs": "^3.2.4",
"openapi-typescript": "^6.1.0",
"p-queue-compat": "^1.0.223",
"prettier": "^2.8.8",
"ts-morph": "^18.0.0",
"yaml": "^2.1.1",
"yargs": "^17.6.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/d3": "^7.4.0",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^21.1.1",
"@types/lodash.keyby": "^4.6.7",
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^47.0.0",
"oclif": "^3",
"openapi-types": "^12.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}