Skip to content

Commit 6f414fb

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 5bc6fcc commit 6f414fb

File tree

1 file changed

+41
-41
lines changed

1 file changed

+41
-41
lines changed

package.json

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,39 @@
11
{
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"
711
],
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",
821
"author": {
9-
"email": "Source/Open@Editor.Land",
1022
"name": "Source 🖋️ Open 👐🏻",
23+
"email": "Source/Open@Editor.Land",
1124
"url": "HTTPS://Editor.Land"
1225
},
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"
1535
},
36+
"l10n": "./l10n",
1637
"contributes": {
1738
"commands": [
1839
{
@@ -569,13 +590,18 @@
569590
}
570591
]
571592
},
593+
"activationEvents": [
594+
"onDebugInitialConfigurations",
595+
"onDebugDynamicConfigurations:debugpy",
596+
"onDebugResolve:debugpy",
597+
"onLanguage:python"
598+
],
572599
"dependencies": {
573600
"fs-extra": "^11.2.0",
574601
"iconv-lite": "^0.6.3",
575602
"jsonc-parser": "^3.2.0",
576603
"lodash": "^4.17.21"
577604
},
578-
"description": "Python Debugger extension using debugpy.",
579605
"devDependencies": {
580606
"@playform/build": "0.2.3",
581607
"@types/chai": "^4.3.4",
@@ -595,42 +621,16 @@
595621
"ts-mockito": "^2.6.1",
596622
"typemoq": "^2.1.0"
597623
},
598-
"displayName": "Python Debugger",
599-
"enabledApiProposals": [
600-
"portsAttributes",
601-
"debugVisualization",
602-
"contribViewsWelcome"
603-
],
604624
"extensionDependencies": [
605625
"ms-python.python"
606626
],
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,
619627
"publishConfig": {
620628
"access": "public"
621629
},
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+
]
636636
}

0 commit comments

Comments
 (0)