-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.4 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
{
"name": "ssh-screenshot-paste",
"displayName": "SSH Screenshot Paste",
"description": "Cmd+V screenshots from your Mac clipboard into VS Code remote terminals. Saves the image to the remote host and types the file path.",
"version": "1.0.1",
"publisher": "jamesprnich",
"license": "MIT",
"icon": "resources/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/jamesprnich/ssh-screenshot-paste"
},
"homepage": "https://github.com/jamesprnich/ssh-screenshot-paste#readme",
"bugs": {
"url": "https://github.com/jamesprnich/ssh-screenshot-paste/issues"
},
"keywords": [
"clipboard",
"screenshot",
"paste",
"terminal",
"remote",
"ssh",
"image",
"claude"
],
"galleryBanner": {
"color": "#1a1a2e",
"theme": "dark"
},
"qna": false,
"engines": {
"vscode": "^1.80.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "terminalScreenshotPaste.paste",
"title": "SSH Screenshot Paste: Paste"
}
],
"keybindings": [
{
"command": "terminalScreenshotPaste.paste",
"key": "cmd+v",
"when": "terminalFocus && isMac"
}
],
"configuration": {
"title": "SSH Screenshot Paste",
"properties": {
"terminalScreenshotPaste.screenshotDir": {
"type": "string",
"default": ".vscode-screenshots",
"description": "Directory name in the workspace root for saving screenshots"
},
"terminalScreenshotPaste.retentionDays": {
"type": "number",
"default": 30,
"minimum": 0,
"description": "Delete screenshots older than this many days. Set to 0 to keep forever."
},
"terminalScreenshotPaste.manageGitignore": {
"type": "boolean",
"default": false,
"description": "Auto-add screenshot directory to .gitignore"
}
}
}
},
"scripts": {
"compile": "tsc -b",
"check-types": "tsc -b",
"watch": "tsc -b -w",
"package:vsix": "vsce package",
"publish": "vsce publish",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/vscode": "1.80.0",
"@types/node": "22.13.0",
"@vscode/vsce": "3.7.1",
"typescript": "5.7.3",
"vitest": "3.1.1"
}
}