-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "azure-debug-relay",
"displayName": "Azure Debugging Relay",
"description": "Distributed Debugging Extension for Python",
"version": "0.5.5",
"publisher": "VladKolesnikov-vladkol",
"repository": "https://github.com/vladkol/azure-debug-relay",
"engines": {
"vscode": "^1.34.0"
},
"icon": "images/azdebugrelay-icon.png",
"categories": [
"Debuggers"
],
"keywords": [
"debug",
"debugging",
"debugger",
"python",
"remote"
],
"activationEvents": [
"onStartupFinished",
"workspaceContains:.azrelay.json",
"onDebug"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "azdebugrelay.listen",
"title": "Start listening"
},
{
"command": "azdebugrelay.stop",
"title": "Stop"
}
],
"configuration": {
"type": "object",
"title": "Azure Debugging Relay",
"properties": {
"azure-debug-relay.azrelay-connection-string": {
"type": [
"string"
],
"default": "",
"description": "Connection String of an Azure Relay (Hybrid Connection)",
"scope": "machine-overridable"
},
"azure-debug-relay.azrelay-connection-name": {
"type": [
"string"
],
"default": "",
"description": "Azure Relay Hybrid Connection Name",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^4.0.2"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}