- ServiceError base class with statusCode, message, details - HTTP errors: BadRequest, Unauthorized, Forbidden, NotFound, Conflict, TooManyRequests - 10 tests passing (vitest) - Superset of all 4 service error files in LysnrAI
19 lines
329 B
JSON
19 lines
329 B
JSON
{
|
|
"name": "@bytelyst/errors",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
}
|
|
}
|