-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 KB
/
package.json
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
{
"name": "node-remote-repl",
"version": "1.3.4",
"description": "Node.js remote code execution via inspect protocol",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/darky/node-remote-repl.git"
},
"bin": {
"node-remote-repl": "./index.js"
},
"files": [
"index.js"
],
"scripts": {
"build": "npx type-coverage --at-least 100 --ignore-catch; rm index.js; tsc --build tsconfig.json; gsed -i '1 i #!/usr/bin/env node' index.js; chmod +x index.js",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"repl",
"node",
"inspect",
"remote",
"execution"
],
"author": "Vladislav Botvin",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.33.0",
"commander": "^11.0.0"
},
"devDependencies": {
"@types/node": "20.5.6",
"prettier": "3.0.2",
"type-coverage": "2.26.1"
},
"optionalDependencies": {
"@swc/core": "^1.3.80",
"typescript": "^5.2.2"
}
}