Skip to main content

Built and signed on GitHub Actions

Companion package for https://jsr.io/@klexik/fastify-oas-connector to generate types, routes, security handlers and service file

This package works with Node.jsIt is unknown whether this package works with Deno
This package works with Node.js
It is unknown whether this package works with Deno
JSR Score
100%
Published
7 months ago (1.1.2)
Package root>package.json
{ "name": "fastify-openapi-connector-generator", "version": "1.1.2", "description": "Complimentary CLI tool for fastify-openapi-connector package. It generates prefabricates for handlers from OpenAPI specification.", "author": "Stepan Martinek", "repository": { "type": "git", "url": "git+https://github.com/martinek-stepan/fastify-openapi-connector" }, "homepage": "https://github.com/martinek-stepan/fastify-openapi-connector/tree/main/packages/generator#readme", "license": "MIT", "private": false, "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "fastify-oas-generator": "dist/cli.js" }, "scripts": { "build": "tsc", "publish:npm": "tsc && npm publish --access public", "format": "biome check --apply ./src", "lint:ci": "biome ci ./src" }, "engines": { "node": ">=18" }, "dependencies": { "@redocly/openapi-core": "1.5.0", "fastify-openapi-connector": "1.x.x", "glob": "10.3.10", "yargs-parser": "^21.1.1" }, "devDependencies": { "@biomejs/biome": "1.4.1", "@types/node": "18.x.x", "@types/yargs-parser": "^21.0.3", "typescript": "5.3.3", "ts-node": "10.9.2" }, "keywords": [ "fastify", "openapi", "specification", "3.1", "routes", "security", "validation", "typescript", "esm", "module", "generator", "typed" ] }