-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "swagger-autogen-ast",
"version": "1.0.13",
"description": "A zero-config OpenAPI 3.0 generator for Express. The AST-based spiritual successor to swagger-autogen with automatic type inference.",
"keywords": [
"swagger",
"openapi",
"express",
"typescript",
"documentation",
"generator",
"autogen",
"swagger-autogen",
"ast",
"automatic",
"auto",
"generate",
"inference"
],
"homepage": "https://github.com/anthfgreco/swagger-autogen-ast",
"bugs": {
"url": "https://github.com/anthfgreco/swagger-autogen-ast/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthfgreco/swagger-autogen-ast.git"
},
"license": "MIT",
"author": "Anthony Greco",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"swagger-autogen-ast": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"prettier": "prettier src --write",
"sort-package-json": "npx sort-package-json",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"openapi-types": "^12.1.3",
"ora": "^9.0.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.2",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.2.0",
"vitest": "^4.0.15"
}
}