This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
95 lines (95 loc) · 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
{
"name": "terminal-tabs",
"displayName": "Terminal Tabs (deprecated)",
"description": "Adds tabs for each terminal process to the status bar",
"version": "0.2.1",
"preview": true,
"publisher": "Tyriar",
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/Tyriar/vscode-terminal-tabs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Tyriar/vscode-terminal-tabs"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:terminalTabs.createTerminal",
"onCommand:terminalTabs.createNamedTerminal"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "terminalTabs.createTerminal",
"title": "Terminal Tabs: Create terminal"
},
{
"command": "terminalTabs.createNamedTerminal",
"title": "Terminal Tabs: Create named terminal"
},
{
"command": "terminalTabs.showTerminal1",
"title": "Terminal Tabs: Show terminal #1"
},
{
"command": "terminalTabs.showTerminal2",
"title": "Terminal Tabs: Show terminal #2"
},
{
"command": "terminalTabs.showTerminal3",
"title": "Terminal Tabs: Show terminal #3"
},
{
"command": "terminalTabs.showTerminal4",
"title": "Terminal Tabs: Show terminal #4"
},
{
"command": "terminalTabs.showTerminal5",
"title": "Terminal Tabs: Show terminal #5"
},
{
"command": "terminalTabs.showTerminal6",
"title": "Terminal Tabs: Show terminal #6"
},
{
"command": "terminalTabs.showTerminal7",
"title": "Terminal Tabs: Show terminal #7"
},
{
"command": "terminalTabs.showTerminal8",
"title": "Terminal Tabs: Show terminal #8"
},
{
"command": "terminalTabs.showTerminal9",
"title": "Terminal Tabs: Show terminal #9"
},
{
"command": "terminalTabs.showTerminal10",
"title": "Terminal Tabs: Show terminal #10"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint './src/**/*.ts'",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"tslint": "^5.10.0",
"typescript": "4.2",
"vscode": "^1.0.0"
}
}