|
1 | 1 | { |
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 | + ], |
13 | 8 | "contributes": { |
14 | 9 | "commands": [ |
15 | 10 | { |
|
511 | 506 | } |
512 | 507 | ] |
513 | 508 | }, |
514 | | - "activationEvents": [ |
515 | | - "onDebugInitialConfigurations", |
516 | | - "onDebugDynamicConfigurations:debugpy", |
517 | | - "onDebugResolve:debugpy", |
518 | | - "onLanguage:python" |
519 | | - ], |
520 | 509 | "dependencies": { |
521 | 510 | "fs-extra": "11.2.0", |
522 | 511 | "iconv-lite": "0.6.3", |
523 | 512 | "jsonc-parser": "3.3.1", |
524 | 513 | "lodash": "4.17.21" |
525 | 514 | }, |
| 515 | + "description": "Python Debugger extension using debugpy.", |
526 | 516 | "devDependencies": { |
527 | 517 | "@types/chai": "5.0.1", |
528 | 518 | "@types/chai-as-promised": "8.0.1", |
|
541 | 531 | "ts-mockito": "2.6.1", |
542 | 532 | "typemoq": "2.1.0" |
543 | 533 | }, |
544 | | - "extensionDependencies": [ |
545 | | - "ms-python.python" |
546 | | - ], |
547 | | - "icon": "icon.png", |
| 534 | + "displayName": "Python Debugger", |
548 | 535 | "enabledApiProposals": [ |
549 | 536 | "portsAttributes", |
550 | 537 | "debugVisualization", |
551 | 538 | "contribViewsWelcome" |
552 | 539 | ], |
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 | + } |
554 | 554 | } |
0 commit comments