UNPKG

fastify-fusion

Version:

Fastify API framework with `best practices` and `plugins` fused together to make it easy to build and maintain your API.

66 lines (65 loc) 1.56 kB
{ "name": "fastify-fusion", "version": "1.1.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", "scripts": { "test": "xo --fix && vitest run --coverage", "test:ci": "xo && vitest run --coverage", "build": "rimraf ./dist && tsup src/index.ts --format esm,cjs --dts --clean", "clean": "rimraf ./dist", "prepare": "pnpm build" }, "keywords": [ "fastify", "fusion", "framework", "web", "server", "static", "helmet", "pino", "logging", "typescript", "api", "rest" ], "author": "Jared Wray <me@jaredwray.com>", "license": "MIT", "devDependencies": { "@swc/core": "^1.12.1", "@types/node": "^24.0.3", "@vitest/coverage-v8": "^3.2.4", "rimraf": "^6.0.1", "tsd": "^0.32.0", "tsup": "^8.5.0", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^3.2.4", "xo": "^1.1.0" }, "peerDependencies": { "fastify": "^5.3.2" }, "dependencies": { "@fastify/helmet": "^13.0.1", "@fastify/rate-limit": "^10.3.0", "@fastify/static": "^8.2.0", "@fastify/swagger": "^9.5.1", "@fastify/swagger-ui": "^5.2.3", "pino": "^9.7.0", "pino-pretty": "^13.0.0", "read-package-up": "^11.0.0" }, "files": [ "dist", "LICENSE" ], "xo": { "rules": { "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-assignment": "off" } } }