next-openapi-gen
Version:
Automatically generate OpenAPI 3.0 documentation from Next.js projects, with support for Zod schemas and TypeScript types.
57 lines (56 loc) • 1.23 kB
JSON
{
"name": "next-openapi-gen",
"version": "0.7.3",
"description": "Automatically generate OpenAPI 3.0 documentation from Next.js projects, with support for Zod schemas and TypeScript types.",
"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://git@github.com/tazo90/next-openapi-gen.git"
},
"keywords": [
"nextjs",
"openapi",
"swagger",
"typescript",
"zod",
"api-docs",
"api",
"docs",
"react",
"scalar",
"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"
}
}