-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.95 KB
/
package.json
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
{
"name": "code-clip-ring",
"displayName": "Clipboard Ring",
"description": "A Visual Studio Code plugin that extends the clipboard and stores copied data in a ring storage.",
"version": "0.4.1",
"publisher": "SirTobi",
"author": {
"name": "Tobias Kahlert (a.k.a SirTobi)"
},
"homepage": "https://github.com/SrTobi/code-clip-ring",
"engines": {
"vscode": "^1.30.1"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#252526",
"theme": "dark"
},
"activationEvents": [
"onCommand:clipring.removeAllRingItems",
"onCommand:clipring.removeRingItem",
"onCommand:clipring.copyToRing",
"onCommand:clipring.cutToRing",
"onCommand:clipring.pasteRingItem",
"onCommand:clipring.selectAndPasteRingItem"
],
"main": "./out/main",
"contributes": {
"commands": [
{
"command": "clipring.removeAllRingItems",
"title": "Remove all Ring Items"
},
{
"command": "clipring.removeRingItem",
"title": "Remove Ring Item"
},
{
"command": "clipring.copyToRing",
"title": "Copy to Ring"
},
{
"command": "clipring.cutToRing",
"title": "Cut to Ring"
},
{
"command": "clipring.pasteRingItem",
"title": "Paste Ring Item"
},
{
"command": "clipring.selectAndPasteRingItem",
"title": "Select and paste Ring Item"
}
],
"configuration": {
"title": "",
"properties": {
"clipring.maxRingItems": {
"title": "Maximal items in the clipboard ring. Overflowing items will be removed.",
"default": 10,
"type": "integer"
},
"clipring.itemToClipboardOnPaste": {
"title": "Transfer item to clipboard when item is pasted.",
"default": true,
"type": "boolean"
},
"clipring.backupClipboard": {
"title": "Before any clipboard operation the current clipboard content is added to the ring. Set backupClipboard to false to disable this behavior.",
"default": true,
"type": "boolean"
},
"clipring.selectTextAfterPasteFromMenu": {
"title": "Select pasted text after pasting it from ring menu.",
"default": true,
"type": "boolean"
}
}
},
"keybindings": [
{
"key": "ctrl+c",
"mac": "cmd+c",
"when": "editorFocus",
"command": "clipring.copyToRing"
},
{
"key": "ctrl+x",
"mac": "cmd+x",
"when": "editorFocus",
"command": "clipring.cutToRing"
},
{
"key": "ctrl+shift+v",
"mac": "cmd+shift+v",
"when": "editorFocus",
"command": "clipring.pasteRingItem"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && tsc -p .",
"compile": "tsc -p .",
"watch": "tsc --watch -p ."
},
"repository": {
"type": "git",
"url": "https://github.com/SrTobi/code-clip-ring/"
},
"bugs": {
"url": "https://github.com/SrTobi/code-clip-ring/issues"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@types/vscode": "^1.56.0",
"typescript": "^4.2.4"
}
}