-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 920 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 920 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
{
"name": "developer-error-message-translator",
"version": "1.0.0",
"description": "Translate cryptic developer errors (React, Node, TypeScript) into plain English with causes and fixes.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"dev-translate": "./dist/bin/dev-translate.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"start": "ts-node bin/dev-translate.ts"
},
"keywords": [
"error",
"translator",
"debugging",
"react",
"node",
"typescript",
"developer-tools"
],
"author": "Antigravity",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}