-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
112 lines (112 loc) · 2.32 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
{
"name": "hxcpp-debugger",
"displayName": "HXCPP Debugger",
"version": "1.2.4",
"publisher": "vshaxe",
"license": "MIT",
"description": "Debugger for Haxe/HXCPP applications",
"author": {
"name": "vshaxe"
},
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Debuggers"
],
"icon": "images/icon.png",
"galleryBanner": {
"theme": "dark",
"color": "#000000"
},
"keywords": [
"haxe",
"hxcpp",
"C++"
],
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/hxcpp-debugger.git"
},
"bugs": {
"url": "https://github.com/vshaxe/hxcpp-debugger/issues"
},
"dependencies": {
"vscode-debugprotocol": "1.36.0",
"vscode-debugadapter": "1.36.0"
},
"devDependencies": {
"lix": "^15.8.9"
},
"scripts": {
"vscode:prepublish": "haxe build.hxml",
"postinstall": "lix download"
},
"main": "bin/extension.js",
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"title": "Setup",
"command": "hxcpp-debugger.setup",
"category": "HXCPP Debugger"
}
],
"debuggers": [
{
"type": "hxcpp",
"label": "HXCPP",
"program": "./bin/adapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "full path to executable.",
"default": "${workspaceFolder}/bin/yourExecutable.exe"
},
"receiveAdapterOutput": {
"type": "boolean",
"description": "redirect adapter log to debug console",
"default": false
}
}
},
"attach": {
"properties": {
"request": {
"type": "string",
"description": "Attaches to an executable which is launched manually",
"default": "attach"
},
"receiveAdapterOutput": {
"type": "boolean",
"description": "redirect adapter log to debug console",
"default": false
}
}
}
},
"initialConfigurations": [
{
"name": "HXCPP",
"type": "hxcpp",
"request": "launch",
"program": "${workspaceFolder}/bin/yourExecutable.exe"
}
]
}
]
},
"__metadata": {
"id": "3a689fe4-5899-4db6-b6a4-6641fc11022f",
"publisherDisplayName": "Haxe Foundation",
"publisherId": "bdf58939-bf37-40d4-9543-90fcc14fd490"
}
}