-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "next-openapi-gen",
"version": "0.1.2",
"description": "Super fast and easy way to generate OpenAPI documentation automatically from API routes in NextJS.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"bin": {
"next-openapi-gen": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tazo90/next-openapi-gen.git"
},
"keywords": [
"react",
"nextjs",
"openapi",
"swagger",
"docs",
"api",
"redoc"
],
"publishConfig": {
"access": "public"
},
"author": "Mariusz Winnik",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@babel/parser": "^7.25.7",
"@babel/traverse": "^7.25.7",
"@babel/types": "^7.25.7",
"commander": "^12.1.0",
"fs-extra": "^10.0.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"typescript": "^4.5.4"
}
}