-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "shift-shift",
"publisher": "ahgood",
"repository": "https://github.com/ahgood/shift-shift",
"displayName": "shift shift",
"description": "Provide shortcuts `shift+shift` and `ctrl+ctrl` to call `quick open` and `command palette` without editing `keybindings.json`.",
"version": "0.0.5",
"icon": "icon.png",
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"keybindings": [
{
"command": "workbench.action.quickOpen",
"key": "shift shift",
"mac": "shift shift"
},
{
"command": "workbench.action.quickOpen",
"key": "alt alt",
"mac": "alt alt"
},
{
"command": "workbench.action.showCommands",
"key": "ctrl ctrl",
"mac": "ctrl ctrl"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.54.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}