forked from doonfrs/terminal-paste-image-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.6 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
{
"name": "terminal-image-paste",
"displayName": "Terminal Image Paste",
"description": "Paste clipboard images directly into terminal with automatic path insertion. Works with Claude Code, OpenCode, and other terminal-based AI tools.",
"version": "0.1.1",
"author": {
"name": "Cybersader"
},
"publisher": "cybersader",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cybersader/vscode-terminal-image-paste"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"image",
"paste",
"clipboard",
"terminal",
"claude",
"ai",
"screenshot",
"opencode"
],
"activationEvents": [
"onCommand:terminal-paste-image.pasteImage"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "terminal-paste-image.pasteImage",
"title": "Paste Image to Terminal"
}
],
"keybindings": [
{
"command": "terminal-paste-image.pasteImage",
"key": "ctrl+alt+v",
"mac": "cmd+alt+v",
"when": "terminalFocus"
}
],
"configuration": {
"type": "object",
"title": "Terminal Paste Image",
"properties": {
"terminalPasteImage.folderName": {
"type": "string",
"default": ".cp-images",
"description": "Name of the folder where pasted images will be saved"
},
"terminalPasteImage.autoGitIgnore": {
"type": "boolean",
"default": true,
"description": "Automatically add the images folder to .gitignore if it's not already present"
},
"terminalPasteImage.maxImages": {
"type": "number",
"default": 10,
"minimum": 1,
"maximum": 100,
"description": "Maximum number of images to keep in the folder (older images will be automatically deleted)"
},
"terminalPasteImage.pathFormat": {
"type": "string",
"default": "relative",
"enum": ["relative", "absolute"],
"enumDescriptions": [
"Use relative path from workspace root (e.g., .cp-images/image.png)",
"Use absolute file system path (e.g., /home/user/project/.cp-images/image.png)"
],
"description": "Format of the image path inserted into the terminal"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "16.x",
"typescript": "^4.9.4"
},
"dependencies": {
"clipboardy": "^3.0.0"
}
}