-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 896 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 896 Bytes
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
{
"name": "errlocal",
"version": "0.3.1",
"scripts": {
"start": "node bin/errlocal.js",
"test": "vitest run"
},
"keywords": [
"cli",
"error-handler",
"ai",
"debugging",
"localization",
"groq",
"lingo"
],
"author": "Yash Pouranik",
"license": "MIT",
"description": "A CLI tool to fix runtime errors in seconds with AI & Localization.",
"type": "module",
"files": [
"bin",
"src"
],
"bin": {
"errlocal": "./bin/errlocal.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/yash-pouranik/errlocal.git"
},
"dependencies": {
"@inquirer/prompts": "^8.2.1",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dotenv": "^16.6.1",
"execa": "^8.0.1",
"groq-sdk": "^0.37.0",
"lingo.dev": "^0.131.4"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}