mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-18 16:56:33 +00:00
31 lines
767 B
JSON
31 lines
767 B
JSON
{
|
|
"name": "arduino-debugger-extension",
|
|
"version": "0.1.2",
|
|
"description": "An extension for debugging Arduino programs",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@theia/debug": "next",
|
|
"arduino-ide-extension": "0.1.2",
|
|
"cdt-gdb-adapter": "^0.0.14",
|
|
"vscode-debugadapter": "^1.26.0",
|
|
"vscode-debugprotocol": "^1.26.0"
|
|
},
|
|
"scripts": {
|
|
"prepare": "yarn run clean && yarn run build",
|
|
"clean": "rimraf lib",
|
|
"lint": "tslint -c ./tslint.json --project ./tsconfig.json",
|
|
"build": "tsc && yarn lint",
|
|
"watch": "tsc -w"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"theiaExtensions": [
|
|
{
|
|
"backend": "lib/node/arduino-debug-backend-module",
|
|
"frontend": "lib/browser/arduino-debug-frontend-module"
|
|
}
|
|
]
|
|
}
|