forked from doonfrs/vscode-wsl-reveal-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.85 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "remote-ssh-reveal-explorer",
"displayName": "Remote-SSH Reveal in File Explorer",
"description": "Seamlessly open Windows File Explorer from Remote-SSH. Right-click any file or folder to reveal it in Windows Explorer.",
"version": "1.2.2",
"icon": "assets/imgs/logo.png",
"author": {
"name": "Sébastien Baillou",
"url": "https://marketplace.visualstudio.com/publishers/sbaillou"
},
"publisher": "sbaillou",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sbaillou/vscode-remote-ssh-reveal-explorer"
},
"bugs": {
"url": "https://github.com/sbaillou/vscode-remote-ssh-reveal-explorer/issues"
},
"homepage": "https://github.com/sbaillou/vscode-remote-ssh-reveal-explorer#readme",
"keywords": [
"remote-ssh",
"windows",
"explorer",
"file manager",
"reveal",
"context menu"
],
"engines": {
"vscode": "^1.74.0"
},
"type": "module",
"categories": [
"Other"
],
"extensionKind": [
"ui"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "remote-ssh-reveal-explorer.revealInExplorer",
"title": "Remote-SSH Reveal in File Explorer"
},
{
"command": "remote-ssh-reveal-explorer.test",
"title": "Test Remote-SSH Reveal Extension"
}
],
"menus": {
"explorer/context": [
{
"command": "remote-ssh-reveal-explorer.revealInExplorer",
"when": "remoteName == ssh-remote",
"group": "6_copypath@1000"
}
],
"editor/title/context": [
{
"command": "remote-ssh-reveal-explorer.revealInExplorer",
"when": "remoteName == ssh-remote",
"group": "2_files"
}
]
},
"configuration": {
"type": "object",
"title": "Remote-SSH Reveal",
"properties": {
"remote-ssh-reveal-explorer.networkPath": {
"type": "string",
"default": "",
"description": "Path to the network folder of the Remote-SSH machine.",
"scope": "window"
},
"remote-ssh-reveal-explorer.pathPrefixToStrip": {
"type": "string",
"default": "",
"description": "Prefix to strip from the remote path.",
"scope": "window"
}
}
},
"keybindings": [
{
"key": "shift+alt+r",
"command": "remote-ssh-reveal-explorer.revealInExplorer",
"when": "editorTextFocus && remoteName == 'ssh-remote'"
}
]
},
"scripts": {
"test": "echo \"No tests specified\"",
"compile": "tsc -p ./",
"build": "vcse build",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/vscode": "^1.74.0"
},
"dependencies": {
"open": "^10.2.0",
"path": "^0.12.7"
}
}