-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "api-doc-sync",
"version": "1.0.0",
"description": "Automate OpenAPI/Swagger documentation - generate Markdown & HTML docs from specs and sync to GitHub",
"main": "dist/index.js",
"bin": {
"api-doc-sync": "./dist/cli.js"
},
"scripts": {
"build": "tsc && cp -r src/templates dist/templates",
"dev": "ts-node src/cli.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepare": "husky install || true",
"prepublishOnly": "npm run build"
},
"keywords": [
"openapi",
"swagger",
"documentation",
"markdown",
"html",
"github",
"cli",
"api",
"generator",
"api-doc-sync",
"rest",
"api-docs"
],
"author": "斯克鲁奇 <agolid@github>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Agolid/api-doc-sync.git"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"commander": "^11.1.0",
"handlebars": "^4.7.8",
"inquirer": "^9.2.15",
"js-yaml": "^4.1.0",
"marked": "^17.0.3",
"octokit": "^3.1.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}