38 lines
954 B
JSON
38 lines
954 B
JSON
{
|
|
"name": "pioarduino-vscode-debug",
|
|
"version": "1.2.0",
|
|
"description": "pioarduino debugger for VSCode with MI3/MI4 support",
|
|
"main": "dist/extension.js",
|
|
"engines": {
|
|
"vscode": "^1.82.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Jason2866/pioarduino-vscode-debug.git"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --mode production",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@vscode/debugadapter": "^1.68.0",
|
|
"@vscode/debugprotocol": "^1.68.0",
|
|
"fast-xml-parser": "^5.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^22.19.17",
|
|
"@types/vscode": "~1.82.0",
|
|
"jest": "^30.3.0",
|
|
"js-yaml": "^4.1.1",
|
|
"ts-jest": "^29.4.9",
|
|
"ts-loader": "^9.5.7",
|
|
"typescript": "^5.9.3",
|
|
"webpack": "~5.105.4",
|
|
"webpack-cli": "~6.0.1"
|
|
}
|
|
}
|