-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "openapi-to-md",
"version": "1.0.25",
"main": "dist/index.js",
"bin": {
"openapi-to-md": "dist/index.js"
},
"scripts": {
"test": "ts-node src/index.ts test/api.github.com.yaml test/README.md",
"test:sort": "ts-node src/index.ts -s test/api.github.com.yaml test/README.md",
"test:url": "ts-node src/index.ts -s https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.yaml test/README.md",
"build": "tsc -b",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.2",
"@types/swagger2openapi": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"openapi-types": "^12.1.3",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"commander": "^12.1.0",
"swagger2openapi": "*",
"yaml": "*"
},
"description": "Convert OpenAPI format to Markdown",
"repository": {
"type": "git",
"url": "git+https://github.com/SoraKumo001/openapi-to-md.git"
},
"keywords": [
"openapi",
"swagger",
"yaml",
"json",
"markdown"
],
"author": "SoraKumo",
"bugs": {
"url": "https://github.com/SoraKumo001/openapi-to-md/issues"
},
"homepage": "https://github.com/SoraKumo001/openapi-to-md#readme"
}