Skip to content

Commit 8acb88a

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 0c5cbd6 commit 8acb88a

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
{
2-
"activationEvents": [
3-
"onDebugInitialConfigurations",
4-
"onDebugDynamicConfigurations:debugpy",
5-
"onDebugResolve:debugpy",
6-
"onLanguage:python"
7-
],
2+
"name": "debugpy",
3+
"displayName": "Python Debugger",
4+
"description": "Python Debugger extension using debugpy.",
5+
"main": "./dist/extension.js",
6+
"scripts": {
7+
"compile": "webpack",
8+
"compile-tests": "tsc -p . --outDir out",
9+
"format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
10+
"vsce-package": "npx @vscode/vsce package -o python-debugger.vsix",
11+
"watch-tests": "tsc -p . -w --outDir out"
12+
},
813
"contributes": {
914
"commands": [
1015
{
@@ -506,13 +511,18 @@
506511
}
507512
]
508513
},
514+
"activationEvents": [
515+
"onDebugInitialConfigurations",
516+
"onDebugDynamicConfigurations:debugpy",
517+
"onDebugResolve:debugpy",
518+
"onLanguage:python"
519+
],
509520
"dependencies": {
510521
"fs-extra": "11.2.0",
511522
"iconv-lite": "0.6.3",
512523
"jsonc-parser": "3.3.1",
513524
"lodash": "4.17.21"
514525
},
515-
"description": "Python Debugger extension using debugpy.",
516526
"devDependencies": {
517527
"@types/chai": "5.0.1",
518528
"@types/chai-as-promised": "8.0.1",
@@ -531,24 +541,14 @@
531541
"ts-mockito": "2.6.1",
532542
"typemoq": "2.1.0"
533543
},
534-
"displayName": "Python Debugger",
544+
"extensionDependencies": [
545+
"ms-python.python"
546+
],
547+
"icon": "icon.png",
535548
"enabledApiProposals": [
536549
"portsAttributes",
537550
"debugVisualization",
538551
"contribViewsWelcome"
539552
],
540-
"extensionDependencies": [
541-
"ms-python.python"
542-
],
543-
"icon": "icon.png",
544-
"l10n": "./l10n",
545-
"main": "./dist/extension.js",
546-
"name": "debugpy",
547-
"scripts": {
548-
"compile": "webpack",
549-
"compile-tests": "tsc -p . --outDir out",
550-
"format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
551-
"vsce-package": "npx @vscode/vsce package -o python-debugger.vsix",
552-
"watch-tests": "tsc -p . -w --outDir out"
553-
}
553+
"l10n": "./l10n"
554554
}

0 commit comments

Comments
 (0)