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