-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 KB
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
{
"name": "openapi-typescript-types",
"version": "0.3.2",
"description": "A tool used to generate types from OpenAPI 3.x schemas",
"author": "Patrick Bacon-Blaber",
"license": "ISC",
"keywords": [
"openapi",
"swagger",
"typescript",
"ts",
"types",
"type",
"generation",
"generator",
"generate"
],
"main": "./dist/main.js",
"bin": {
"ott": "./dist/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pablaber/openapi-typescript-types/"
},
"scripts": {
"build": "tsc",
"create-executable": "npm run build && npm i -g",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
},
"dependencies": {
"@readme/openapi-parser": "^2.5.1",
"commander": "^12.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^9.0.4",
"winston": "^3.13.0"
}
}