-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@hiprax/errors",
"version": "0.7.1",
"description": "A modular error handling solution for Express.js applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "jest",
"type-check": "tsc --noEmit",
"test:types": "tsc -p tsconfig.typetests.json --noEmit",
"lint": "eslint src tests --max-warnings=0",
"lint:fix": "eslint src tests --fix",
"check-types-pack": "attw --pack ."
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hiprax/errors.git"
},
"keywords": [
"error",
"errors",
"error-handling",
"error-handler",
"error-middleware",
"express",
"express-middleware",
"typescript",
"http-errors",
"async-handler",
"catch-async",
"mongoose",
"zod",
"jwt",
"axios",
"aggregate-error"
],
"author": "Hiprax",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hiprax/errors/issues"
},
"homepage": "https://github.com/Hiprax/errors#readme",
"engines": {
"node": ">=18.12"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.13.3",
"@types/supertest": "^7.2.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"express": "^5.2.1",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"peerDependencies": {
"express": ">=4.x"
}
}