50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "mini-debugger",
|
|
"displayName": "Mini Debugger",
|
|
"description": "Debug Lua inside my C/C++ application",
|
|
"version": "1.0.0",
|
|
"publisher": "JailGames",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.sustancia.synology.me/JailDoctor/mini-debugger"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.85.0"
|
|
},
|
|
"categories": ["Debuggers"],
|
|
"activationEvents": ["onDebug:mini-debugger"],
|
|
"main": "./extension.js",
|
|
"contributes": {
|
|
"breakpoints": [
|
|
{ "language": "lua" }
|
|
],
|
|
"debuggers": [
|
|
{
|
|
"type": "mini-debugger",
|
|
"label": "Debugger for mini games",
|
|
"runtime": "node",
|
|
"languages": ["lua"],
|
|
"initialConfigurations": [
|
|
{
|
|
"type": "mini-debugger",
|
|
"request": "launch",
|
|
"name": "Debugger for mini games",
|
|
"program": "${workspaceFolder}/mini_debug"
|
|
}
|
|
],
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"properties": {
|
|
"program": {
|
|
"type": "string",
|
|
"description": "Ruta a tu aplicación C/C++"
|
|
}
|
|
},
|
|
"required": ["program"]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|