-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 2.78 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 2.78 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "claudeboard",
"displayName": "Claudeboard",
"description": "Share images with Claude Code running on a remote server via Remote-SSH",
"version": "1.0.1",
"publisher": "dkodr",
"author": "Dariusz Kuśnierek",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/dkodr/claudeboard"
},
"bugs": {
"url": "https://github.com/dkodr/claudeboard/issues"
},
"homepage": "https://github.com/dkodr/claudeboard#readme",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other",
"Snippets",
"Formatters"
],
"keywords": [
"image",
"upload",
"clipboard",
"paste",
"remote-ssh",
"server",
"screenshot",
"png",
"productivity",
"workflow",
"development",
"remote",
"ssh",
"file",
"path",
"claude",
"claude-code",
"ai"
],
"activationEvents": [
"onFileSystem:vscode-remote"
],
"main": "./out/extension.js",
"extensionKind": [
"ui"
],
"contributes": {
"commands": [
{
"command": "imageUploader.uploadFromClipboard.editor",
"title": "Upload Image from Clipboard (Editor)"
},
{
"command": "imageUploader.uploadFromClipboard.terminal",
"title": "Upload Image from Clipboard (Terminal)"
}
],
"keybindings": [
{
"command": "imageUploader.uploadFromClipboard.editor",
"key": "ctrl+alt+v",
"when": "editorTextFocus"
},
{
"command": "imageUploader.uploadFromClipboard.terminal",
"key": "ctrl+alt+v",
"when": "terminalFocus"
}
],
"configuration": {
"title": "Claudeboard",
"properties": {
"imageUploader.keybinding": {
"type": "string",
"default": "ctrl+alt+v",
"description": "Keyboard shortcut for uploading images from clipboard",
"enum": [
"ctrl+alt+v",
"ctrl+shift+v",
"alt+v",
"ctrl+v",
"f12"
],
"enumDescriptions": [
"Ctrl+Alt+V (default)",
"Ctrl+Shift+V",
"Alt+V",
"Ctrl+V (may conflict with normal paste)",
"F12"
]
},
"imageUploader.retentionDays": {
"type": "number",
"default": 30,
"minimum": 0,
"maximum": 365,
"description": "Days to keep uploaded images before auto-cleanup (0 = never delete)"
},
"imageUploader.clearClipboardAfterUpload": {
"type": "boolean",
"default": false,
"description": "Clear clipboard after successfully uploading an image"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"clean": "rm -rf out",
"package": "vsce package",
"install-package": "code --install-extension *.vsix"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"dependencies": {}
}