-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.41 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.41 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
{
"name": "@xan105/error",
"description": "Error handling tools",
"version": "2.0.0",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
},
"./codes": {
"types": "./types/codes.d.ts",
"default": "./lib/codes.js"
}
},
"types": "./types/index.d.ts",
"files": [
"/lib",
"/types"
],
"engines": {
"node": ">=24.13.0"
},
"scripts": {
"lint": "biome lint",
"test": "node --test",
"check": "tsc --noemit --checkjs",
"declare": "tsc --emitDeclarationOnly"
},
"keywords": [
"error",
"fail",
"failure",
"attempt",
"match",
"errorLookup",
"errorCode"
],
"author": {
"name": "Anthony Beaumont",
"email": "dev.xan105@outlook.be",
"url": "https://xan105.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xan105/node-error.git"
},
"bugs": {
"url": "https://github.com/xan105/node-error/issues"
},
"homepage": "https://github.com/xan105/node-error",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/xan105"
},
{
"type": "paypal",
"url": "https://www.paypal.me/xan105"
}
],
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/node": "^25.1.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@xan105/types": "^0.3.0"
}
}