-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
110 lines (110 loc) · 2.29 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
{
"name": "haxe-debug",
"displayName": "Flash Debugger",
"version": "1.2.3",
"publisher": "vshaxe",
"license": "MIT",
"description": "Debugger for Haxe/Flash applications",
"author": {
"name": "vshaxe"
},
"engines": {
"vscode": "^1.36.0"
},
"icon": "images/flash-logo.png",
"categories": [
"Debuggers"
],
"galleryBanner": {
"theme": "dark",
"color": "#d31a20"
},
"keywords": [
"haxe",
"flash",
"swf"
],
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/flash-debugger.git"
},
"bugs": {
"url": "https://github.com/vshaxe/flash-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": [
"onDebugResolve:fdb"
],
"contributes": {
"debuggers": [
{
"type": "fdb",
"label": "Flash",
"program": "./bin/adapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "full path to a swf file.",
"default": "${workspaceFolder}/bin/your.swf"
},
"request": {
"type": "string",
"description": "launch",
"default": "launch"
},
"receiveAdapterOutput": {
"type": "bool",
"description": "redirect adapter log to debug console",
"default": false
}
}
},
"attach": {
"properties": {
"request": {
"type": "string",
"description": "Attaches to a swf which is launched manually",
"default": "attach"
},
"receiveAdapterOutput": {
"type": "bool",
"description": "redirect adapter log to debug console",
"default": false
}
}
}
},
"initialConfigurations": [
{
"name": "Flash",
"type": "fdb",
"request": "launch",
"program": "${workspaceFolder}/bin/your.swf"
}
]
}
]
},
"__metadata": {
"id": "248c7837-b842-494f-a5ce-e20ca2c8aef4",
"publisherDisplayName": "Haxe Foundation",
"publisherId": "bdf58939-bf37-40d4-9543-90fcc14fd490"
}
}