-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
143 lines (143 loc) · 3.41 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
{
"name": "krom-debug",
"displayName": "Debugger for Krom",
"version": "20.6.0",
"publisher": "kodetech",
"description": "Debug your JavaScript code in Krom.",
"license": "SEE LICENSE IN LICENSE.txt",
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.18.0",
"node": "^7.9.0"
},
"icon": "images/icon.png",
"categories": [
"Debuggers"
],
"repository": {
"type": "git",
"url": "https://github.com/Kode/vscode-krom-debug.git"
},
"bugs": {
"url": "https://github.com/Kode/vscode-krom-debug/issues"
},
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "mocha -u tdd ./out/tests/",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"@types/source-map": "^0.5.7",
"await-notify": "1.0.1",
"source-map": "^0.7.3",
"vscode-debugadapter": "^1.27.0",
"vscode-debugprotocol": "1.27.0"
},
"devDependencies": {
"@types/node": "7.0.55",
"@types/mocha": "2.2.48",
"typescript": "2.6.2",
"mocha": "5.0.1",
"vscode-debugadapter-testsupport": "1.27.0",
"tslint": "5.9.1",
"vsce": "1.37.5",
"vscode": "1.1.17"
},
"main": "./out/extension",
"activationEvents": [
"onDebug"
],
"contributes": {
"breakpoints": [
{
"language": "haxe"
}
],
"debuggers": [
{
"type": "krom",
"label": "Krom",
"program": "./out/debugAdapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"properties": {
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
},
"port": {
"type": "number",
"description": "Manually set the debug port (it's randomized by default).",
"default": 0
},
"sound": {
"type": "boolean",
"description": "Sound is still problematic in Krom, therefore it's off by default. Feel free to try your luck though.",
"default": false
}
}
},
"attach": {
"required": [
"port"
],
"properties": {
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
},
"port": {
"type": "number",
"description": "Set the debug port.",
"default": 0
},
"sound": {
"type": "boolean",
"description": "Sound is still problematic in Krom, therefore it's off by default. Feel free to try your luck though.",
"default": false
}
}
}
},
"initialConfigurations": [
{
"type": "mock",
"request": "launch",
"name": "Ask for file name",
"program": "${workspaceFolder}/${command:AskForProgramName}",
"stopOnEntry": true
}
],
"configurationSnippets": [
{
"label": "Mock Debug: Launch",
"description": "A new configuration for 'debugging' a user selected markdown file.",
"body": {
"type": "mock",
"request": "launch",
"name": "Ask for file name",
"program": "^\"\\${workspaceFolder}/\\${command:AskForProgramName}\"",
"stopOnEntry": true
}
}
],
"variables": {
"AskForProgramName": "extension.mock-debug.getProgramName"
}
}
]
},
"extensionDependencies": [
"kodetech.krom"
]
}