-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
123 lines (123 loc) · 3.75 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
122
123
{
"name": "clipboard-history",
"displayName": "Clipboard History",
"description": "Keep a history of your copied items and re-paste if needed",
"version": "1.0.6",
"publisher": "Anjali",
"license": "LICENSE.md",
"icon": "images/logo.png",
"bugs": {
"url": "https://github.com/aefernandes/vscode-clipboard-history-extension/issues"
},
"homepage": "https://github.com/aefernandes/vscode-clipboard-history-extension/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/aefernandes/vscode-clipboard-history-extension/"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:clipboard.copy",
"onCommand:clipboard.cut",
"onCommand:clipboard.paste",
"onCommand:clipboard.pasteFromClipboard",
"onCommand:clipboard.removeFromClipboard",
"onCommand:clipboard.editClipboard"
],
"main": "./out/src/clipboard",
"contributes": {
"configuration": {
"type": "object",
"title": "Clipboard History",
"properties": {
"clipboard.size": {
"type": "integer",
"minimum": 1,
"default": 12,
"description": "Maximum number of items saved in clipboard"
}
}
},
"commands": [
{
"command": "clipboard.copy",
"title": "Copy to Clipboard"
},
{
"command": "clipboard.cut",
"title": "Cut to Clipboard"
},
{
"command": "clipboard.paste",
"title": "Paste"
},
{
"command": "clipboard.pasteFromClipboard",
"title": "Paste from Clipboard"
},
{
"command": "clipboard.removeFromClipboard",
"title": "Remove from Clipboard"
},
{
"command": "clipboard.editClipboard",
"title": "Edit Clipboard"
}
],
"keybindings": [
{
"command": "clipboard.copy",
"key": "ctrl+c",
"mac": "cmd+c",
"when": "editorTextFocus"
},
{
"command": "clipboard.cut",
"key": "ctrl+x",
"mac": "cmd+x",
"when": "editorTextFocus"
},
{
"command": "clipboard.paste",
"key": "ctrl+v",
"mac": "cmd+v",
"when": "editorTextFocus"
},
{
"command": "clipboard.pasteFromClipboard",
"key": "ctrl+shift+v",
"mac": "cmd+shift+v",
"when": "editorTextFocus"
},
{
"command": "clipboard.removeFromClipboard",
"key": "ctrl+alt+v d",
"mac": "cmd+alt+v d",
"when": "editorTextFocus"
},
{
"command": "clipboard.editClipboard",
"key": "ctrl+alt+v e",
"mac": "cmd+alt+v e",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}