@puq/error 0.5.11 → 0.5.20

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.
Files changed (1) hide show
  1. package/package.json +86 -1
package/package.json CHANGED
@@ -1 +1,86 @@
1
- {"name":"@puq/error","license":"MIT","version":"0.5.11","publishConfig":{"access":"public","tag":"latest"},"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.","author":{"email":"robert.brightline@gmail.com","name":"Robert Brightline","url":"https://rbrightline.github.io"},"keywords":["puq","error"],"repository":{"directory":"libs/error","url":"https://github.com/rbrightline/puq/tree/main","type":"github"},"homepage":"https://rbrightline.github.io/puq/error","bugs":{"email":"robert.brightline@gmail.com","url":"https://rbrightline.github.io"},"categories":["Other"],"contributors":[{"email":"robert.brightline@gmail.com","name":"Robert Brightline","url":"https://rbrightline.github.io"}],"funding":["https://cash.app/$puqlib"],"icon":"https://raw.githubusercontent.com/rbrightline/puq/refs/heads/main/libs/error/favicon.png","type":"module","main":"./dist/index.js","module":"./dist/index.js","types":"./dist/index.d.ts","exports":{"./package.json":"./package.json",".":{"types":"./dist/index.d.ts","import":"./dist/index.js","default":"./dist/index.js"}},"files":["dist","!**/*.tsbuildinfo"],"nx":{"sourceRoot":"libs/error/src","targets":{"build":{"executor":"@nx/js:swc","outputs":["{options.outputPath}"],"options":{"outputPath":"libs/error/dist","main":"libs/error/src/index.ts","tsConfig":"libs/error/tsconfig.lib.json","skipTypeCheck":false,"stripLeadingPaths":true},"dependsOn":["lint"]},"doc":{"command":"cd libs/error && npx compodoc -d ../../public/error -p tsconfig.lib.json -n error"}}},"dependencies":{"@swc/helpers":"^0.5.15"}}
1
+ {
2
+ "name": "@puq/error",
3
+ "license": "MIT",
4
+ "version": "0.5.20",
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
+ }