-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 828 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 828 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
{
"name": "unbug",
"version": "1.0.0",
"description": "A TUI to debug Javascript programs 🔧",
"main": "index.js",
"scripts": {
"start": "node dist/src",
"dev": "run-s clean build && node dist/src",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"commander": "^9.4.0",
"devtools-protocol": "^0.0.1040073",
"noice-json-rpc": "^1.2.0",
"typescript": "^4.8.2",
"uuid": "^8.3.2",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/blessed": "^0.1.19",
"@types/node": "^18.7.13",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"types-package-json": "^2.0.39"
}
}