Files
pioarduino-vscode-debug/package.json
T
Jason2866 ae9a84e351 Decompile minified dist/ bundles into human-readable TypeScript source
Reconstructed the original TypeScript source code from the two minified
webpack bundles (dist/adapter.js and dist/extension.js).

Source structure:
- src/common.ts: Shared types (NumberFormat, events, SymbolType/Scope)
- src/utils.ts: Utility functions (hexFormat, binaryFormat, etc.)
- src/extension.ts: VS Code extension entry point
- src/backend/: Debug adapter (GDB/MI2 protocol, symbol table, etc.)
- src/frontend/: VS Code UI providers (peripherals, registers, memory, disassembly)
2026-03-11 15:54:40 +01:00

34 lines
847 B
JSON

{
"name": "platformio-vscode-debug",
"version": "1.4.1",
"description": "PlatformIO Debugger for VSCode",
"main": "dist/extension.js",
"engines": {
"vscode": "^1.35.0"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platformio-vscode-ide.git"
},
"scripts": {
"build": "webpack --mode production",
"lint": "tslint ./src/**/*.ts",
"postinstall": "node ./node_modules/@types/vscode/bin/install || true"
},
"dependencies": {
"copy-paste": "^1.3.0",
"vscode-debugadapter": "1.35.0",
"vscode-debugprotocol": "1.35.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/vscode": "~1.44.0",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "~5.68.0",
"webpack-cli": "~4.9.2"
}
}