-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.26 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.26 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
{
"name": "errlens",
"version": "1.1.0",
"description": "Professional CLI tool that explains JavaScript and Node.js errors in plain English with actionable fixes directly in your terminal.",
"main": "./bin/index.js",
"bin": {
"errlens": "bin/index.js"
},
"author": "BeyteFlow (https://github.com/BeyteFlow)",
"license": "MIT",
"keywords": [
"javascript",
"nodejs",
"cli",
"error",
"debugging",
"stacktrace",
"developer-tools",
"terminal",
"diagnostics",
"productivity",
"devtools",
"error-handler"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/",
"lib/",
"locales/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/**/*.test-lang.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeyteFlow/errlens.git"
},
"bugs": {
"url": "https://github.com/BeyteFlow/errlens/issues"
},
"homepage": "https://github.com/BeyteFlow/errlens#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/BeyteFlow"
},
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"fuse.js": "^7.0.0",
"ora": "^9.3.0"
},
"directories": {
"lib": "lib"
}
}