-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "python-vscode-bridge",
"displayName": "Python-VS Code Bridge",
"description": "Minimal demonstration of Python-to-VS Code communication via WebSocket",
"version": "0.0.1",
"publisher": "your-publisher-id",
"repository": {
"type": "git",
"url": "https://github.com/IanMayo/python-vs-code-integration.git"
},
"scripts": {
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"compile": "yarn esbuild-base --sourcemap",
"watch": "yarn esbuild-base --sourcemap --watch",
"vscode:prepublish": "yarn esbuild-base --minify",
"typecheck": "tsc --noEmit"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "python-vscode-bridge.helloWorld",
"title": "Hello World"
},
{
"command": "python-vscode-bridge.openPythonDemo",
"title": "Python Bridge: Open Demo Files"
},
{
"command": "python-vscode-bridge.installPythonDeps",
"title": "Python Bridge: Install Python Dependencies"
}
]
},
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@types/ws": "^8.5.10",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.25.9",
"typescript": "^4.9.4"
},
"dependencies": {
"ws": "^8.14.2"
}
}