-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.73 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.73 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
{
"name": "@dephub/error",
"type": "module",
"version": "1.0.2",
"description": "Structured error handling for Node.js and browsers with TypeScript support, customizable codes, details, and consistent logging.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "pnpm lint && pnpm check-types && pnpm build",
"release": "pnpm publish",
"docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
"check-types": "tsc --noEmit --skipLibCheck",
"lint": "eslint . --fix --max-warnings 0",
"fmt": "prettier --write .",
"clean": "rm -rf dist",
"build": "vite build",
"dev": "vite build -w --mode development"
},
"keywords": [
"error",
"error-handling",
"typescript",
"nodejs",
"browser",
"structured-errors",
"error-codes",
"logging",
"dephub"
],
"author": {
"name": "Estarlin R",
"email": "dev@estarlincito.com",
"url": "https://estarlincito.com"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"homepage": "https://github.com/dephub-js/error#readme",
"repository": {
"type": "git",
"url": "https://github.com/dephub-js/error.git"
},
"bugs": {
"url": "https://github.com/dephub-js/error/issues"
},
"engines": {
"node": ">=22.5.0"
},
"dependencies": {
"@dephub/logger": "^1.1.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.30.3",
"devDependencies": {
"@dephub/eslint-ts": "^1.0.2",
"@dephub/glob": "^1.0.2",
"@dephub/path": "^1.0.2",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}