http-errors-plus
Version:
Next-gen HTTP error handling for modern JavaScript and TypeScript apps — structured, overrideable, and developer-focused.
73 lines • 1.77 kB
JSON
{
"name": "http-errors-plus",
"version": "1.0.3",
"description": "Next-gen HTTP error handling for modern JavaScript and TypeScript apps — structured, overrideable, and developer-focused.",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 nodemon index.js",
"build": "rm -rf dist && vite build && npx tsc --emitDeclarationOnly --declaration --declarationDir dist"
},
"keywords": [
"http",
"error",
"errors",
"http-errors",
"structured-errors",
"http status",
"api",
"developer-experience",
"observable",
"typescript",
"javascript",
"ESM",
"fastify",
"express"
],
"repository": {
"type": "git",
"url": "https://github.com/LPIX-11/http-errors-plus.git"
},
"bugs": {
"url": "https://github.com/LPIX-11/http-errors-plus/issues"
},
"homepage": "https://github.com/LPIX-11/http-errors-plus#readme",
"author": {
"name": "Mohamed Johnson (lpix-11)",
"email": "mohamed.johnson@orange-sonatel.com",
"url": "https://github.com/LPIX-11"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@jsdoc/salty": "^0.2.8",
"@types/events": "^3.0.3",
"@types/linkify-it": "^5.0.0",
"@types/node": "^22.5.4",
"better-docs": "^2.7.3",
"prettier": "^3.2.5",
"typescript": "^5.5.4",
"vite": "^5.4.3"
},
"dependencies": {
"statuses": "^2.0.1"
}
}