-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.3 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
124
125
126
127
128
129
130
131
132
{
"name": "vscode-close-editor",
"displayName": "vscode-close-editor",
"description": "",
"repository": "https://github.com/tomer-epstein/vscode-close-editor",
"publisher": "tomer-epstein",
"version": "0.0.1",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.closeActiveEditor",
"onCommand:extension.closeOtherEditors",
"onCommand:extension.closeEditorsInGroup",
"onCommand:extension.closeEditorsInOtherGroups",
"onCommand:extension.closeEditorsToTheLeft",
"onCommand:extension.closeEditorsToTheRight",
"onCommand:extension.closeAllEditors"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.closeActiveEditor",
"title": "VSCode Close Active Editor",
"icon": {
"light": "./resources/images/icons/01.svg",
"dark": "./resources/images/icons/01.svg"
}
},
{
"command": "extension.closeOtherEditors",
"title": "VSCode Close Other Editors",
"icon": {
"light": "./resources/images/icons/02.svg",
"dark": "./resources/images/icons/02.svg"
}
},
{
"command": "extension.closeEditorsInGroup",
"title": "VSCode Close Editors In Group",
"icon": {
"light": "./resources/images/icons/03.svg",
"dark": "./resources/images/icons/03.svg"
}
},
{
"command": "extension.closeEditorsInOtherGroups",
"title": "VSCode Close Editors In Other Groups",
"icon": {
"light": "./resources/images/icons/04.svg",
"dark": "./resources/images/icons/04.svg"
}
},
{
"command": "extension.closeEditorsToTheLeft",
"title": "VSCode Close Editors To The Left",
"icon": {
"light": "./resources/images/icons/05.svg",
"dark": "./resources/images/icons/05.svg"
}
},
{
"command": "extension.closeEditorsToTheRight",
"title": "VSCode Close Editors To The Right",
"icon": {
"light": "./resources/images/icons/06.svg",
"dark": "./resources/images/icons/06.svg"
}
},
{
"command": "extension.closeAllEditors",
"title": "VSCode Close All Editors",
"icon": {
"light": "./resources/images/icons/07.svg",
"dark": "./resources/images/icons/07.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "extension.closeActiveEditor",
"group": "navigation"
},
{
"command": "extension.closeOtherEditors",
"group": "navigation"
},
{
"command": "extension.closeEditorsInGroup",
"group": "navigation"
},
{
"command": "extension.closeEditorsInOtherGroups",
"group": "navigation"
},
{
"command": "extension.closeEditorsToTheLeft",
"group": "navigation"
},
{
"command": "extension.closeEditorsToTheRight",
"group": "navigation"
},
{
"command": "extension.closeAllEditors",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package .",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"vsce": "^1.71.0",
"tslint": "^5.12.1",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42"
}
}