-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.21 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
44
45
46
47
48
49
50
51
{
"name": "easy-attach",
"version": "2.0.1",
"author": {
"name": "Henning Dieterichs",
"email": "[email protected]"
},
"description": "A helper tool that makes launching the debugger to step through obscure node-js scripts (e.g. webpack configurations) extremely easy.",
"homepage": "https://github.com/hediet/easy-attach",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"bin": {
"easy-attach": "./dist/cli.entry.js"
},
"scripts": {
"run-example": "node ./example/script.js",
"dev": "tsc --watch",
"build": "tsc"
},
"dependencies": {
"@hediet/std": "^0.1.12",
"@hediet/typed-json-rpc": "^0.3.13",
"@hediet/typed-json-rpc-streams": "^0.3.1",
"@types/http-proxy": "^1.17.0",
"chalk": "^2.4.2",
"chrome-launcher": "^0.10.5",
"chrome-remote-interface": "^0.28.0",
"clipboardy": "^1.2.3",
"get-port": "^5.0.0",
"http-proxy": "^1.17.0",
"node-fetch": "^2.3.0",
"simples": "^0.8.8",
"vscode-rpc": "^0.2.2"
},
"devDependencies": {
"@types/clipboardy": "^1.1.0",
"@types/node-fetch": "^2.1.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"entries",
"docs",
"src",
"assets"
]
}