-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
192 lines (192 loc) · 5.56 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"name": "escargot-vscode-extension",
"displayName": "Escargot",
"description": "Escargot Debugging",
"version": "0.1.0",
"publisher": "Samsung",
"author": {
"name": "Samsung Electronics Co., Ltd."
},
"homepage": "https://github.com/rerobika/escargot-vscode-extension",
"repository": {
"type": "git",
"url": "git+https://github.com/rerobika/escargot-vscode-extension.git"
},
"license": "Apache-2.0",
"private": false,
"keywords": [
"escargot",
"debug",
"debugger",
"javascript",
"js"
],
"galleryBanner": {
"theme": "light"
},
"engines": {
"vscode": "^1.23.0",
"node": "^8.11.1"
},
"categories": [
"Debuggers"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.26",
"@types/sinon": "^4.3.3",
"@types/ws": "^4.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"sinon": "^5.1.1",
"tslint": "^5.20.1",
"typescript": "^2.9.2",
"vscode": "^1.1.37"
},
"dependencies": {
"@types/ncp": "^2.0.4",
"all-unpacker": "^0.1.3",
"babel-preset-env": "^1.7.0",
"ncp": "^2.0.0",
"node-ssh": "^10.0.2",
"npm-watch": "^0.6.0",
"rimraf": "^2.7.1",
"vscode-debugadapter": "^1.41.0",
"vscode-debugprotocol": "^1.41.0",
"ws": "^5.2.2"
},
"activationEvents": [
"*",
"onLanguage:javascript",
"onDebug",
"onCommand:escargot-debug.initialConfigurations"
],
"main": "./out/extension.js",
"files": [
"out/**"
],
"contributes": {
"breakpoints": [
{
"language": "javascript"
},
{
"language": "typescript"
}
],
"debuggers": [
{
"type": "escargot",
"label": "Escargot Debug",
"program": "./out/EscargotDebugger.js",
"runtime": "node",
"initialConfigurations": "escargot-debug.initialConfigurations",
"configurationAttributes": {
"attach": {
"properties": {
"address": {
"type": "string",
"description": "IP address on which the server listening. Default is 'localhost'.",
"default": "localhost"
},
"localRoot": {
"type": [
"string",
"null"
],
"description": "The local source root.",
"default": null
},
"debugLog": {
"type": "number",
"description": "Set log level for the debugger: 0 none, 1 error, 2 session, 3 protocol, 4 verbose",
"default": 0
}
}
},
"launch": {
"required": [],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to the program.",
"default": "escargot"
},
"args": {
"type": "array",
"description": "Command line arguments passed to the program.",
"items": {
"type": "string"
},
"default": []
},
"localRoot": {
"type": "string",
"description": "Absolute path to the working directory of the program being debugged. Default is the current workspace.",
"default": "${workspaceRoot}"
},
"debugLog": {
"type": "number",
"description": "Set log level for the debugger: 0 none, 1 error, 2 session, 3 protocol, 4 verbose",
"default": 0
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Environment variables passed to the program.",
"default": {}
},
"address": {
"type": "string",
"description": "IP address on which the server listening. Default is 'localhost'.",
"default": "localhost"
}
}
}
},
"configurationSnippets": [
{
"label": "Escargot: Attach",
"description": "Attach to a running Escargot.",
"body": {
"name": "Escargot: Attach",
"type": "escargot",
"request": "attach",
"address": "localhost",
"//": "For using the default option please remove this line and the whitespace between `$` and `{`",
"localRoot": "$ {workspaceRoot}",
"debugLog": 0
}
},
{
"label": "Escargot: Launch",
"description": "Launch Escargot automatically.",
"body": {
"name": "Escargot: Launch",
"type": "escargot",
"request": "launch",
"program": "escargot",
"//": "For using the default option please remove this line and the whitespace between `$` and `{`",
"localRoot": "$ {workspaceRoot}",
"address": "localhost",
"debugLog": 0,
"args": [
"--start-debug-server",
"--debugger-wait-source"
]
}
}
]
}
]
}
}