-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
155 lines (155 loc) · 4.21 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "vscode-terminals",
"displayName": "Terminals Manager",
"description": "An extension for setting-up multiple terminals at once, or just running some commands",
"icon": "resources/logo-128x128.png",
"version": "1.15.0",
"license": "MIT",
"main": "out/extension.js",
"publisher": "fabiospampinato",
"author": {
"name": "Fabio Spampinato",
"email": "spampinabio@gmail.com"
},
"bugs": {
"url": "https://github.com/fabiospampinato/vscode-terminals/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/vscode-terminals"
},
"engines": {
"vscode": "^1.70.0"
},
"keywords": [
"terminals",
"manager",
"startup",
"setup",
"restore",
"command"
],
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Terminals - Configuration",
"properties": {
"terminals.configPath": {
"type": "string",
"description": "The location of the configuration file"
},
"terminals.autorun": {
"type": "boolean",
"description": "Execute `Terminals: Run` automatically at startup or when the project is added to the workspace",
"default": false
},
"terminals.autokill": {
"type": "boolean",
"description": "Kill all the terminals created from this configuration when the project is removed from the workspace",
"default": false
},
"terminals.env": {
"type": "object",
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": " Global environment variables that will be applied to all terminals",
"default": {}
},
"terminals.invertCommandsAndDescription": {
"type": "boolean",
"description": "Invert a terminal commands and description in the quickpick",
"default": false
},
"terminals.showCommands": {
"type": "boolean",
"description": "Show terminals' commands in the quickpick",
"default": false
},
"terminals.showDescriptions": {
"type": "boolean",
"description": "Show terminals' descriptions in the quickpick",
"default": true
},
"terminals.sortTerminals": {
"type": "boolean",
"description": "Sort terminals alphabetically",
"default": false
},
"terminals.multiplexer": {
"type": "string",
"enum": [
"screen",
"tmux"
],
"description": "The terminal multiplexer to use for persistent terminals",
"default": "screen"
},
"terminals.terminals": {
"type": "array",
"description": "Array of terminals to open",
"default": []
}
}
},
"commands": [
{
"command": "terminals.editConfig",
"title": "Terminals: Edit Configuration"
},
{
"command": "terminals.kill",
"title": "Terminals: Kill"
},
{
"command": "terminals.runTerminals",
"title": "Terminals: Run"
},
{
"command": "terminals.runTerminal",
"title": "Terminals: Run Single"
}
],
"keybindings": [
{
"command": "terminals.runTerminal",
"key": "ctrl+alt+t",
"mac": "cmd+alt+t"
}
]
},
"scripts": {
"vscode:prepublish": "rm -rf out && webpack --mode production",
"compile": "webpack --mode development",
"compile:watch": "webpack --mode development --watch",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.8",
"absolute": "0.0.1",
"conf-merge": "^1.0.0",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"untildify": "^3.0.3",
"vscode-beggar": "^1.0.1"
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"ts-loader": "^5.2.1",
"typescript": "^4.5.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}