-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 943 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 943 Bytes
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
{
"name": "pioarduino-vscode-debug",
"version": "1.1.2",
"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",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/vscode": "~1.82.0",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "~5.105.4",
"webpack-cli": "~6.0.1"
}
}