@puq/error 0.4.50 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +1 -1
- package/package.json +85 -85
package/dist/package.json
CHANGED
package/package.json
CHANGED
@@ -1,86 +1,86 @@
|
|
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
|
-
|
1
|
+
{
|
2
|
+
"name": "@puq/error",
|
3
|
+
"license": "MIT",
|
4
|
+
"version": "0.5.3",
|
5
|
+
"publishConfig": {
|
6
|
+
"access": "public",
|
7
|
+
"tag": "latest"
|
8
|
+
},
|
9
|
+
"description": "This library provides a structured collection of error functions for handling various error types in your application. Each error function includes a unique error code, a message, and optional metadata, allowing for efficient error tracking and debugging.",
|
10
|
+
"author": {
|
11
|
+
"email": "robert.brightline@gmail.com",
|
12
|
+
"name": "Robert Brightline",
|
13
|
+
"url": "https://rbrightline.github.io"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"puq",
|
17
|
+
"error"
|
18
|
+
],
|
19
|
+
"repository": {
|
20
|
+
"directory": "libs/error",
|
21
|
+
"url": "https://github.com/rbrightline/puq/tree/main",
|
22
|
+
"type": "github"
|
23
|
+
},
|
24
|
+
"homepage": "https://rbrightline.github.io/puq/error",
|
25
|
+
"bugs": {
|
26
|
+
"email": "robert.brightline@gmail.com",
|
27
|
+
"url": "https://rbrightline.github.io"
|
28
|
+
},
|
29
|
+
"categories": [
|
30
|
+
"Other"
|
31
|
+
],
|
32
|
+
"contributors": [
|
33
|
+
{
|
34
|
+
"email": "robert.brightline@gmail.com",
|
35
|
+
"name": "Robert Brightline",
|
36
|
+
"url": "https://rbrightline.github.io"
|
37
|
+
}
|
38
|
+
],
|
39
|
+
"funding": [
|
40
|
+
"https://cash.app/$puqlib"
|
41
|
+
],
|
42
|
+
"icon": "https://raw.githubusercontent.com/rbrightline/puq/refs/heads/main/libs/error/favicon.png",
|
43
|
+
"type": "module",
|
44
|
+
"main": "./dist/index.js",
|
45
|
+
"module": "./dist/index.js",
|
46
|
+
"types": "./dist/index.d.ts",
|
47
|
+
"exports": {
|
48
|
+
"./package.json": "./package.json",
|
49
|
+
".": {
|
50
|
+
"types": "./dist/index.d.ts",
|
51
|
+
"import": "./dist/index.js",
|
52
|
+
"default": "./dist/index.js"
|
53
|
+
}
|
54
|
+
},
|
55
|
+
"files": [
|
56
|
+
"dist",
|
57
|
+
"!**/*.tsbuildinfo"
|
58
|
+
],
|
59
|
+
"nx": {
|
60
|
+
"sourceRoot": "libs/error/src",
|
61
|
+
"targets": {
|
62
|
+
"build": {
|
63
|
+
"executor": "@nx/js:swc",
|
64
|
+
"outputs": [
|
65
|
+
"{options.outputPath}"
|
66
|
+
],
|
67
|
+
"options": {
|
68
|
+
"outputPath": "libs/error/dist",
|
69
|
+
"main": "libs/error/src/index.ts",
|
70
|
+
"tsConfig": "libs/error/tsconfig.lib.json",
|
71
|
+
"skipTypeCheck": false,
|
72
|
+
"stripLeadingPaths": true
|
73
|
+
},
|
74
|
+
"dependsOn": [
|
75
|
+
"lint"
|
76
|
+
]
|
77
|
+
},
|
78
|
+
"doc": {
|
79
|
+
"command": "cd libs/error && npx compodoc -d ../../public/error -p tsconfig.lib.json -n error"
|
80
|
+
}
|
81
|
+
}
|
82
|
+
},
|
83
|
+
"dependencies": {
|
84
|
+
"@swc/helpers": "^0.5.15"
|
85
|
+
}
|
86
86
|
}
|