-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.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
{
"name": "header-source-side-by-side",
"displayName": "Header/Source Side-By-Side",
"description": "Opens header & source in a split next to each other",
"publisher": "JosephLyncheski",
"repository": {
"type": "git",
"url": "https://github.com/directmusic/header-source-side-by-side"
},
"version": "0.2.2",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:header-source-side-by-side.side-by-side",
"onCommand:header-source-side-by-side.switch_file_in_same_window"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "header-source-side-by-side.side-by-side",
"title": "Split Header/Source horizontally."
},
{
"command": "header-source-side-by-side.switch_file_in_same_window",
"title": "Swap between Header/Source in same group."
}
],
"keybindings": [
{
"command": "header-source-side-by-side.side-by-side",
"key": "ctrl+alt+shift+up",
"mac": "cmd+alt+ctrl+up"
},
{
"command": "header-source-side-by-side.side-by-side",
"key": "ctrl+alt+shift+down",
"mac": "cmd+alt+ctrl+down"
},
{
"command": "header-source-side-by-side.switch_file_in_same_window",
"key": "ctrl+alt+up",
"mac": "cmd+ctrl+up"
},
{
"command": "header-source-side-by-side.switch_file_in_same_window",
"key": "ctrl+alt+down",
"mac": "cmd+ctrl+down"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.66.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5",
"@vscode/test-electron": "^2.1.3"
}
}