fastify-openapi-glue
Version:
generate a fastify configuration from an openapi specification
25 lines • 858 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": "c8 node --test test/test-*.js",
"dev": "fastify start -l info -P --options index.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"@seriousme/openapi-schema-validator": "^2.4.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"fastify": "^5.3.2",
"fastify-cli": "^7.4.0",
"c8": "^10.1.3",
"@biomejs/biome": "^1.9.4"
}
}