-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
124 lines (124 loc) · 3.16 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
{
"name": "external-app-debug",
"displayName": "External App Debug",
"version": "0.5.0",
"publisher": "cyphersignal",
"description": "This is an extension designed to facilitate development of content that is executed inside of external applications, by providing integration with debug-protocol-aware applications.",
"author": {
"name": "Cypher Signal"
},
"license": "MIT",
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.56.0"
},
"icon": "images/external-app-debug-icon-256.png",
"categories": [
"Debuggers"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/CypherSignal/vscode-external-app-debug.git"
},
"bugs": {
"url": "https://github.com/CypherSignal/vscode-external-app-debug/issues"
},
"scripts": {
"prepublishOnly": "tsc -p ./src",
"compile": "tsc -p ./src",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"await-notify": "^1.0.1",
"typescript-compiler": "^1.4.1-2",
"vscode-debugadapter": "^1.47.0"
},
"devDependencies": {
"@types/node": "^12.20.13",
"@types/vscode": "^1.56.0 ",
"npm": "^6.14.13",
"tslint": "^5.20.1",
"typescript": "^3.9.9",
"vsce": "^1.88.0"
},
"main": "./out/extension",
"activationEvents": [
"onDebug",
"onCommand:extension.external-app-debug.getFileLocation"
],
"contributes": {
"debuggers": [
{
"type": "external-app-debug",
"label": "External App Debug",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to content to execute in an external application.",
"default": "${workspaceFolder}/${command:getFileLocation}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": false
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"type": "external-app-debug",
"request": "launch",
"name": "Ask for file name",
"program": "${workspaceFolder}/${command:getFileLocation}",
"stopOnEntry": false
}
],
"configurationSnippets": [
{
"label": "External App Debug: Launch",
"description": "Configuration for debugging content in an external application.",
"body": {
"type": "external-app-debug",
"request": "launch",
"name": "Ask for file name",
"program": "^\"\\${workspaceFolder}/\\${command:getFileLocation}\"",
"stopOnEntry": false
}
}
],
"variables": {
"getFileLocation": "extension.external-app-debug.getFileLocation"
}
}
],
"configuration": [
{
"title": "External App Debug",
"properties": {
"external-app-debug.externalAppPath": {
"type": "string",
"default": "",
"description": "The path of the external application to launch (either absolute, or resolved via PATH)."
}
}
}
]
}
}