@fastify/send
Version:
Better streaming static file server with Range and conditional-GET support
59 lines (58 loc) • 1.5 kB
JSON
{
"name": "@fastify/send",
"description": "Better streaming static file server with Range and conditional-GET support",
"version": "3.3.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"James Wyatt Cready <jcready@gmail.com>",
"Jesús Leganés Combarro <piranna@gmail.com>"
],
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/send.git"
},
"bugs": {
"url": "https://github.com/fastify/send/issues"
},
"homepage": "https://github.com/fastify/send#readme",
"keywords": [
"static",
"file",
"server"
],
"dependencies": {
"@lukeed/ms": "^2.0.2",
"escape-html": "~1.0.3",
"fast-decode-uri-component": "^1.0.1",
"http-errors": "^2.0.0",
"mime": "^3"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"after": "0.8.2",
"benchmark": "^2.1.4",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"supertest": "6.3.4",
"tap": "^21.0.0",
"tsd": "^0.31.0"
},
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "npm run test:unit && npm run test:typescript",
"test:coverage": "tap --coverage-report=html",
"test:typescript": "tsd",
"test:unit": "tap"
},
"pre-commit": [
"lint",
"test"
]
}