fastify-fusion
Version:
Fastify API framework with `best practices` and `plugins` fused together to make it easy to build and maintain your API.
76 lines • 2 kB
JSON
{
"name": "fastify-fusion",
"version": "1.5.1",
"type": "module",
"description": "Fastify API framework with `best practices` and `plugins` fused together to make it easy to build and maintain your API.",
"main": "dist/index.js",
"keywords": [
"fastify",
"fusion",
"framework",
"web",
"server",
"static",
"helmet",
"pino",
"logging",
"typescript",
"api",
"rest"
],
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/fastify-fusion.git"
},
"bugs": {
"url": "https://github.com/jaredwray/fastify-fusion/issues"
},
"homepage": "https://github.com/jaredwray/fastify-fusion#readme",
"engines": {
"node": ">=22.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@types/node": "^24.13.2",
"@vitest/coverage-v8": "^4.1.10",
"docula": "^2.2.0",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"peerDependencies": {
"fastify": "^5.3.2"
},
"dependencies": {
"@fastify/cors": "^11.3.0",
"@fastify/helmet": "^13.1.0",
"@fastify/rate-limit": "^11.1.0",
"@fastify/static": "^10.1.0",
"@fastify/swagger": "^9.8.0",
"@fastify/swagger-ui": "^6.1.0",
"@swc/core": "^1.15.43",
"cacheable": "^2.5.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"read-package-up": "^12.0.0"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
"build": "rimraf ./dist && tsup src/index.ts --format esm,cjs --dts --clean",
"clean": "rimraf ./dist ./site/dist ./site/.cache",
"website:build": "docula build",
"website:serve": "docula serve",
"website:dev": "docula dev"
}
}