fastify-print-routes
Version:
A simple plugin for Fastify prints all available routes.
62 lines (61 loc) • 1.67 kB
JSON
{
"name": "fastify-print-routes",
"version": "5.0.1",
"description": "A simple plugin for Fastify prints all available routes.",
"homepage": "https://sw.cowtech.it/fastify-print-routes",
"repository": {
"type": "git",
"url": "git+https://github.com/ShogunPanda/fastify-print-routes.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"print",
"routes"
],
"bugs": {
"url": "https://github.com/ShogunPanda/fastify-print-routes/issues"
},
"author": "Shogun <shogun@cowtech.it>",
"license": "ISC",
"private": false,
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && npm run lint",
"format": "prettier -w src test",
"lint": "eslint --cache",
"test": "c8 -c test/config/c8-local.json node --test --test-reporter=cleaner-spec-reporter test/*.test.ts",
"ci": "npm run build && npm run test",
"prepublishOnly": "npm run ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"acquerello": "^4.0.3",
"fastify-plugin": "^5.1.0",
"table": "^6.9.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@cowtech/eslint-config": "^11.1.3",
"@cowtech/typescript-config": "^0.2.5",
"@types/node": "^24.10.1",
"c8": "^10.1.3",
"cleaner-spec-reporter": "^1.0.3",
"eslint": "^9.39.1",
"fastify": "^5.6.2",
"fastify-type-provider-zod": "^6.1.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 22.21.0"
}
}