-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "python-cache-cleaner",
"displayName": "Python Cache Cleaner",
"description": "Recursively cleans up Python cache directories (__pycache__, .pytest_cache, .cache).",
"version": "1.0.3",
"icon": "icon.png",
"publisher": "karfee",
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:python"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "python-cache-cleaner.cleanCache",
"title": "Clear Python Cache",
"category": "Python Cache Cleaner",
"icon": "$(clear-all)"
}
],
"menus": {
"explorer/context": [
{
"command": "python-cache-cleaner.cleanCache",
"group": "2_workspace",
"when": "explorerResourceIsFolder"
}
],
"view/title": [
{
"command": "python-cache-cleaner.cleanCache",
"group": "navigation",
"when": "view == workbench.explorer.fileView"
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/Blasteed/vsce-python-cache-cleaner.git"
}
}