forked from jaredly/vscode-background-terminal-notifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "background-terminal-notifier",
"displayName": "Background Terminal Notifier",
"description": "Shows a notification when a terminal command completes in the background",
"version": "1.0.4",
"publisher": "jaredly",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"title": "Background Terminal Notifier",
"properties": {
"background-terminal-notifier.pollFrequency": {
"default": 2,
"title": "Poll frequency",
"type": "number",
"description": "Check for command completion every [n] seconds."
},
"background-terminal-notifier.notificationSounds": {
"default": false,
"title": "Notification Sounds",
"type": "boolean",
"description": "Toggle sound for terminal notifications."
}
}
}
},
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/jaredly/vscode-background-terminal-notifier"
},
"main": "./index.js",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"vscode": "^1.1.25"
},
"dependencies": {
"node-notifier": "^6.0.0"
}
}