fastify-openapi-glue
Version:
generate a fastify configuration from an openapi specification
21 lines • 724 B
JSON
{
"name": "swaggerpetstore",
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "fastify start --options index.js",
"test": "node --test test/test-*.js",
"dev": "fastify start -l info -P --options index.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"fastify": "^5.8.5",
"fastify-cli": "^8.0.0"
}
}