|
1 | 1 | { |
2 | | - "activationEvents": [ |
3 | | - "onDebugInitialConfigurations", |
4 | | - "onDebugDynamicConfigurations:debugpy", |
5 | | - "onDebugResolve:debugpy", |
6 | | - "onLanguage:python" |
| 2 | + "name": "debugpy", |
| 3 | + "displayName": "Python Debugger", |
| 4 | + "version": "0.0.1", |
| 5 | + "private": false, |
| 6 | + "description": "Python Debugger extension using debugpy.", |
| 7 | + "keywords": [ |
| 8 | + "codeeditorland", |
| 9 | + "land", |
| 10 | + "playform" |
7 | 11 | ], |
| 12 | + "homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDebugger#readme", |
| 13 | + "bugs": { |
| 14 | + "url": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDebugger/issues" |
| 15 | + }, |
| 16 | + "repository": { |
| 17 | + "type": "git", |
| 18 | + "url": "git+HTTPS://github.com/CodeEditorLand/LandPythonDebugger.git" |
| 19 | + }, |
| 20 | + "license": "SEE LICENSE IN LICENSE", |
8 | 21 | "author": { |
9 | | - "email": "Source/Open@Editor.Land", |
10 | 22 | "name": "Source 🖋️ Open 👐🏻", |
| 23 | + "email": "Source/Open@Editor.Land", |
11 | 24 | "url": "HTTPS://Editor.Land" |
12 | 25 | }, |
13 | | - "bugs": { |
14 | | - "url": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDebugger/issues" |
| 26 | + "type": "module", |
| 27 | + "main": "./dist/extension.js", |
| 28 | + "scripts": { |
| 29 | + "compile": "webpack", |
| 30 | + "compile-tests": "tsc -p . --outDir out", |
| 31 | + "format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'", |
| 32 | + "prepublishOnly": "Build 'Source/**/*.ts'", |
| 33 | + "vsce-package": "npx @vscode/vsce package -o python-debugger.vsix", |
| 34 | + "watch-tests": "tsc -p . -w --outDir out" |
15 | 35 | }, |
| 36 | + "l10n": "./l10n", |
16 | 37 | "contributes": { |
17 | 38 | "commands": [ |
18 | 39 | { |
|
569 | 590 | } |
570 | 591 | ] |
571 | 592 | }, |
| 593 | + "activationEvents": [ |
| 594 | + "onDebugInitialConfigurations", |
| 595 | + "onDebugDynamicConfigurations:debugpy", |
| 596 | + "onDebugResolve:debugpy", |
| 597 | + "onLanguage:python" |
| 598 | + ], |
572 | 599 | "dependencies": { |
573 | 600 | "fs-extra": "^11.2.0", |
574 | 601 | "iconv-lite": "^0.6.3", |
575 | 602 | "jsonc-parser": "^3.2.0", |
576 | 603 | "lodash": "^4.17.21" |
577 | 604 | }, |
578 | | - "description": "Python Debugger extension using debugpy.", |
579 | 605 | "devDependencies": { |
580 | 606 | "@playform/build": "0.2.3", |
581 | 607 | "@types/chai": "^4.3.4", |
|
595 | 621 | "ts-mockito": "^2.6.1", |
596 | 622 | "typemoq": "^2.1.0" |
597 | 623 | }, |
598 | | - "displayName": "Python Debugger", |
599 | | - "enabledApiProposals": [ |
600 | | - "portsAttributes", |
601 | | - "debugVisualization", |
602 | | - "contribViewsWelcome" |
603 | | - ], |
604 | 624 | "extensionDependencies": [ |
605 | 625 | "ms-python.python" |
606 | 626 | ], |
607 | | - "homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDebugger#readme", |
608 | | - "icon": "icon.png", |
609 | | - "keywords": [ |
610 | | - "codeeditorland", |
611 | | - "land", |
612 | | - "playform" |
613 | | - ], |
614 | | - "l10n": "./l10n", |
615 | | - "license": "SEE LICENSE IN LICENSE", |
616 | | - "main": "./dist/extension.js", |
617 | | - "name": "debugpy", |
618 | | - "private": false, |
619 | 627 | "publishConfig": { |
620 | 628 | "access": "public" |
621 | 629 | }, |
622 | | - "repository": { |
623 | | - "type": "git", |
624 | | - "url": "git+HTTPS://github.com/CodeEditorLand/LandPythonDebugger.git" |
625 | | - }, |
626 | | - "scripts": { |
627 | | - "compile": "webpack", |
628 | | - "compile-tests": "tsc -p . --outDir out", |
629 | | - "format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'", |
630 | | - "prepublishOnly": "Build 'Source/**/*.ts'", |
631 | | - "vsce-package": "npx @vscode/vsce package -o python-debugger.vsix", |
632 | | - "watch-tests": "tsc -p . -w --outDir out" |
633 | | - }, |
634 | | - "type": "module", |
635 | | - "version": "0.0.1" |
| 630 | + "icon": "icon.png", |
| 631 | + "enabledApiProposals": [ |
| 632 | + "portsAttributes", |
| 633 | + "debugVisualization", |
| 634 | + "contribViewsWelcome" |
| 635 | + ] |
636 | 636 | } |
0 commit comments