-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 Bytes
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
{
"name": "pytorch-debug-shape",
"displayName": "PyTorch Debug Shape",
"description": "Show PyTorch tensor shapes in VS Code Debugger",
"version": "0.0.1",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pytorch-debug-shape.installPlugin",
"onDebugResolve:python"
],
"icon": "images/icon.jpg",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pytorch-debug-shape.installPlugin",
"title": "PyTorch Debug Shape: Install PyTorch Debug Plugin"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/vscode": "^1.60.0",
"typescript": "^4.2.3",
"@vscode/vsce": "^3.7.1"
},
"dependencies": {}
}