This repository was archived by the owner on Sep 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 4.48 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 4.48 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "vscode-devtools-for-chrome",
"displayName": "DevTools for Chrome",
"description": "Open the chrome devtools as a dockable webview",
"version": "0.0.7",
"preview": true,
"license": "SEE LICENSE IN LICENSE",
"publisher": "codemooseus",
"icon": "icon.png",
"aiKey": "3ec4c1b4-542f-4adf-830a-a4b04370fa3f",
"homepage": "https://github.com/CodeMooseUS/vscode-devtools/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/CodeMooseUS/vscode-devtools"
},
"bugs": {
"url": "https://github.com/CodeMooseUS/vscode-devtools/issues"
},
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"keywords": [
"browser",
"console",
"debugger",
"dom",
"remote"
],
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:devtools-for-chrome.launch",
"onCommand:devtools-for-chrome.attach",
"onWebviewPanel:devtools-for-chrome",
"onDebug"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "devtools-for-chrome.launch",
"title": "Launch Chrome and then attach to a target",
"category": "DevTools for Chrome"
},
{
"command": "devtools-for-chrome.attach",
"title": "Attach to a target",
"category": "DevTools for Chrome"
}
],
"debuggers": [
{
"type": "devtools-for-chrome",
"label": "DevTools for Chrome",
"configurationAttributes": {
"launch": {
"properties": {
"url": {
"type": "string",
"description": "Absolute uri to launch.",
"default": "http://localhost:8080"
},
"file": {
"type": "string",
"description": "File path to launch.",
"default": "${workspaceFolder}/index.html"
},
"chromePath": {
"type": "string",
"description": "Absolute path to the Chrome instance to launch.",
"default": ""
}
}
},
"attach": {
"properties": {
"url": {
"type": "string",
"description": "Absolute uri to launch.",
"default": "http://localhost:8080"
},
"file": {
"type": "string",
"description": "File path to launch.",
"default": "${workspaceFolder}/index.html"
},
"chromePath": {
"type": "string",
"description": "Absolute path to the Chrome instance to launch.",
"default": ""
}
}
}
}
}
],
"configuration": {
"title": "DevTools for Chrome",
"type": "object",
"properties": {
"vscode-devtools-for-chrome.hostname": {
"type": "string",
"default": "localhost",
"description": "The hostname on which to search for remote debuggable chrome instances"
},
"vscode-devtools-for-chrome.port": {
"type": "number",
"default": 9222,
"description": "The port on which to search for remote debuggable chrome instances"
},
"vscode-devtools-for-chrome.chromePath": {
"type": "string",
"default": null,
"description": "The path to Chrome to be used rather than searching for the default"
}
}
}
},
"scripts": {
"package": "npx vsce package --out vscode-devtools.vsix",
"vscode:prepublish": "npm run build",
"build": "npm run build-wp && npm run build-post",
"build-wp": "webpack",
"build-post": "npx ts-node postBuildStep.ts",
"build-watch": "npm run build && npm run watch",
"watch": "npm run watch-wp",
"watch-wp": "webpack --watch"
},
"dependencies": {
"applicationinsights": "1.6.0",
"ws": "7.2.1"
},
"devDependencies": {
"@types/fs-extra": "8.0.1",
"@types/node": "13.5.0",
"@types/shelljs": "0.8.6",
"@types/ws": "7.2.0",
"@types/vscode": "1.34.0",
"@types/applicationinsights": "0.20.0",
"chrome-devtools-frontend": "1.0.602557",
"fs-extra": "8.1.0",
"shelljs": "0.8.3",
"ts-node": "8.6.2",
"ts-loader": "6.0.4",
"tslint": "6.0.0",
"typescript": "3.7.5",
"vsce": "1.71.0",
"vscode": "1.1.37",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
}
}