Skip to content

Commit e349093

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 0ba39a2 commit e349093

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,18 +506,13 @@
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",
523512
"jsonc-parser": "3.3.1",
524513
"lodash": "4.17.21"
525514
},
515+
"description": "Python Debugger extension using debugpy.",
526516
"devDependencies": {
527517
"@types/chai": "5.0.1",
528518
"@types/chai-as-promised": "8.0.1",
@@ -541,14 +531,24 @@
541531
"ts-mockito": "2.6.1",
542532
"typemoq": "2.1.0"
543533
},
544-
"extensionDependencies": [
545-
"ms-python.python"
546-
],
547-
"icon": "icon.png",
534+
"displayName": "Python Debugger",
548535
"enabledApiProposals": [
549536
"portsAttributes",
550537
"debugVisualization",
551538
"contribViewsWelcome"
552539
],
553-
"l10n": "./l10n"
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+
}
554554
}

0 commit comments

Comments
 (0)