Skip to content

Commit 40e40dc

Browse files
1 parent d6e4513 commit 40e40dc

File tree

5 files changed

+22
-232
lines changed

5 files changed

+22
-232
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/Dependabot.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/GitHub.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/workflows/Node.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
{
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-
},
2+
"activationEvents": [
3+
"onDebugInitialConfigurations",
4+
"onDebugDynamicConfigurations:debugpy",
5+
"onDebugResolve:debugpy",
6+
"onLanguage:python"
7+
],
138
"contributes": {
149
"commands": [
1510
{
@@ -511,12 +506,6 @@
511506
}
512507
]
513508
},
514-
"activationEvents": [
515-
"onDebugInitialConfigurations",
516-
"onDebugDynamicConfigurations:debugpy",
517-
"onDebugResolve:debugpy",
518-
"onLanguage:python"
519-
],
520509
"dependencies": {
521510
"fs-extra": "11.2.0",
522511
"iconv-lite": "0.6.3",
@@ -525,6 +514,7 @@
525514
"lodash": "4.17.21",
526515
"reflect-metadata": "0.2.2"
527516
},
517+
"description": "Python Debugger extension using debugpy.",
528518
"devDependencies": {
529519
"@types/chai": "5.0.0",
530520
"@types/chai-as-promised": "8.0.1",
@@ -543,15 +533,25 @@
543533
"ts-mockito": "2.6.1",
544534
"typemoq": "2.1.0"
545535
},
546-
"extensionDependencies": [
547-
"ms-python.python"
548-
],
549-
"icon": "icon.png",
536+
"displayName": "Python Debugger",
550537
"enabledApiProposals": [
551538
"portsAttributes",
552539
"contribIssueReporter",
553540
"debugVisualization",
554541
"contribViewsWelcome"
555542
],
556-
"l10n": "./l10n"
543+
"extensionDependencies": [
544+
"ms-python.python"
545+
],
546+
"icon": "icon.png",
547+
"l10n": "./l10n",
548+
"main": "./dist/extension.js",
549+
"name": "debugpy",
550+
"scripts": {
551+
"compile": "webpack",
552+
"compile-tests": "tsc -p . --outDir out",
553+
"format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
554+
"vsce-package": "npx @vscode/vsce package -o python-debugger.vsix",
555+
"watch-tests": "tsc -p . -w --outDir out"
556+
}
557557
}

0 commit comments

Comments
 (0)