-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 4.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
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
{
"name": "pause-console",
"displayName": "Console Pauser",
"description": "Launch your task from an external console",
"publisher": "Guyutongxue",
"icon": "icon.png",
"repository": {
"url": "https://github.com/VSCodeConfigHelper/pause-console.git"
},
"version": "0.2.5",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"taskDefinitions": [
{
"type": "pause-console",
"required": [
"command"
],
"properties": {
"command": {
"type": "string",
"description": "The command to be executed."
},
"args": {
"type": "array",
"description": "Arguments passed to the command.",
"items": {
"type": "string"
}
},
"options": {
"type": "object",
"description": "Additional options",
"properties": {
"cwd": {
"type": "string",
"description": "The current working directory of the executed program"
},
"env": {
"type": "object",
"description": "The environment variable of the executed program",
"patternProperties": {
".*": {
"type": "string"
}
}
}
}
}
}
}
],
"configuration": {
"title": "Console Pauser",
"properties": {
"pause-console.terminalEmulator.windows": {
"description": "Specify which terminal emulator to use (Windows)",
"type": "string",
"enum": [
"auto",
"cmd"
],
"default": "auto",
"enumDescriptions": [
"Automatically determined by the extension",
"Use Windows console (like conhost.exe or wt.exe)"
]
},
"pause-console.terminalEmulator.macos": {
"description": "Specify which terminal emulator to use (macOS)",
"type": "string",
"enum": [
"auto",
"terminal"
],
"default": "auto",
"enumDescriptions": [
"Automatically determined by the extension",
"Use Terminal.app that comes with OS"
]
},
"pause-console.terminalEmulator.linux": {
"description": "Specify which terminal emulator to use (Linux)",
"type": "string",
"enum": [
"auto",
"x",
"cmd-wsl",
"terminator",
"konsole",
"gnome",
"guake",
"urxvt",
"xfce4",
"kitty",
"alarcitty",
"xterm"
],
"default": "auto",
"enumDescriptions": [
"Automatically determined by the extension",
"Use the registered terminal emulator in X",
"Use the windows console (Only available in WSL)",
"Terminator",
"Konsole, the default terminal emulator in KDE",
"Gnome Emulator, the default terminal emulator in Gnome",
"Guake",
"urxvt",
"xfce4",
"Kitty",
"Alarcitty",
"XTerm"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "rollup -c",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.69.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"rollup": "^3.17.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@gytx/pause-console-wsl": "^0.1.3",
"bplist-parser": "^0.3.2",
"glob": "^8.0.3"
}
}