-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 2.67 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
{
"name": "sccopy",
"displayName": "SCCopy",
"description": "A copy paste manager, inspired by SC2.",
"version": "1.0.3",
"publisher": "calebouellette",
"icon": "icon.png",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other",
"Snippets"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"keybindings": [
{
"command": "copy 1",
"key": "ctrl+1"
},
{
"command": "copy 2",
"key": "ctrl+2"
},
{
"command": "copy 3",
"key": "ctrl+3"
},
{
"command": "copy 4",
"key": "ctrl+4"
},
{
"command": "copy 5",
"key": "ctrl+5"
},
{
"command": "copy 6",
"key": "ctrl+6"
},
{
"command": "copy 7",
"key": "ctrl+7"
},
{
"command": "copy 8",
"key": "ctrl+8"
},
{
"command": "copy 9",
"key": "ctrl+9"
},
{
"command": "copy 0",
"key": "ctrl+0"
},
{
"command": "paste 1",
"key": "alt+1"
},
{
"command": "paste 2",
"key": "alt+2"
},
{
"command": "paste 3",
"key": "alt+3"
},
{
"command": "paste 4",
"key": "alt+4"
},
{
"command": "paste 5",
"key": "alt+5"
},
{
"command": "paste 6",
"key": "alt+6"
},
{
"command": "paste 7",
"key": "alt+7"
},
{
"command": "paste 8",
"key": "alt+8"
},
{
"command": "paste 9",
"key": "alt+9"
},
{
"command": "paste 0",
"key": "alt+0"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}