Skip to content

Commit 201a6f0

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent debc0c1 commit 201a6f0

File tree

2 files changed

+27
-31
lines changed

2 files changed

+27
-31
lines changed

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,35 @@
11
{
22
"name": "debugpy",
33
"displayName": "Python Debugger",
4+
"version": "0.0.1",
5+
"private": false,
46
"description": "Python Debugger extension using debugpy.",
7+
"keywords": [
8+
"codeeditorland",
9+
"land",
10+
"playform"
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",
21+
"author": {
22+
"name": "Source 🖋️ Open 👐🏻",
23+
"email": "Source/Open@Editor.Land",
24+
"url": "HTTPS://Editor.Land"
25+
},
26+
"type": "module",
527
"main": "./dist/extension.js",
628
"scripts": {
729
"compile": "webpack",
830
"compile-tests": "tsc -p . --outDir out",
931
"format-fix": "prettier --write 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
32+
"prepublishOnly": "Build 'Source/**/*.ts'",
1033
"vsce-package": "npx @vscode/vsce package -o python-debugger.vsix",
1134
"watch-tests": "tsc -p . -w --outDir out"
1235
},
@@ -543,6 +566,7 @@
543566
"lodash": "4.17.21"
544567
},
545568
"devDependencies": {
569+
"@playform/build": "0.2.1",
546570
"@types/chai": "5.2.1",
547571
"@types/chai-as-promised": "8.0.2",
548572
"@types/fs-extra": "11.0.4",
@@ -563,6 +587,9 @@
563587
"extensionDependencies": [
564588
"ms-python.python"
565589
],
590+
"publishConfig": {
591+
"access": "public"
592+
},
566593
"icon": "icon.png",
567594
"enabledApiProposals": [
568595
"portsAttributes",

tsconfig.json

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +0,0 @@
1-
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "ES2020",
5-
"lib": [
6-
"es6",
7-
"es2018",
8-
"dom",
9-
"ES2019",
10-
"ES2020"
11-
],
12-
"sourceMap": true,
13-
"typeRoots": [
14-
"./node_modules/@types"
15-
],
16-
"rootDir": "src",
17-
"strict": true, /* enable all strict type-checking options */
18-
"types": [
19-
"chai-as-promised"
20-
],
21-
"experimentalDecorators": true,
22-
"allowSyntheticDefaultImports": true,
23-
"noImplicitAny": true,
24-
"noImplicitThis": true,
25-
"noUnusedLocals": true,
26-
"noUnusedParameters": true,
27-
"noFallthroughCasesInSwitch": true,
28-
"resolveJsonModule": true,
29-
"removeComments": true
30-
}
31-
}

0 commit comments

Comments
 (0)