├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── eslint.config.js ├── package.json ├── prettier.config.js ├── src ├── index.ts ├── spec.ts └── ui.ts ├── test ├── config │ ├── c8-ci.json │ └── c8-local.json ├── spec.test.ts └── ui.test.ts ├── tsconfig.json └── tsconfig.test.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | types/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/src/spec.ts -------------------------------------------------------------------------------- /src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/src/ui.ts -------------------------------------------------------------------------------- /test/config/c8-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/test/config/c8-ci.json -------------------------------------------------------------------------------- /test/config/c8-local.json: -------------------------------------------------------------------------------- 1 | { 2 | "reporter": ["text", "html"] 3 | } 4 | -------------------------------------------------------------------------------- /test/spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/test/spec.test.ts -------------------------------------------------------------------------------- /test/ui.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/test/ui.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastify-openapi-docs/HEAD/tsconfig.test.json --------------------------------------------------------------------------------