-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.83 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
{
"name": "timer",
"displayName": "Timer With Alarm Sounds",
"description": "Set a custom timer with alarm sounds and message pop-ups",
"publisher": "yangduong",
"version": "0.0.2",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"license": "MIT",
"icon": "alarmClock.png",
"keywords": [
"Timer",
"Pomodoro",
"Alarm",
"Alert",
"Clock"
],
"repository": {
"type": "git",
"url": "https://github.com/giangd/vscode-timer"
},
"activationEvents": [
"*"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "timer.start",
"title": "Timer: Start"
},
{
"command": "timer.pause",
"title": "Timer: Pause"
},
{
"command": "timer.reset",
"title": "Timer: Reset"
},
{
"command": "timer.setTime",
"title": "Timer: Set Time"
}
],
"configuration": {
"title": "Timer With Alarm Sounds",
"properties": {
"timer.defaultTimerLength": {
"type": "number",
"default": 1,
"description": "Default timer length in minutes (applies on restart of VS Code)."
},
"timer.notifications.soundAlert": {
"type": "boolean",
"default": true,
"description": "Play an alarm sound when timer is done (applies on restart of VS Code)."
},
"timer.notifications.soundAlertSelection": {
"type": "string",
"default": "Chime",
"description": "Change alert sound (applies on restart of VS Code).",
"enum": [
"Chime",
"Bell"
]
},
"timer.notifications.textAlert": {
"type": "boolean",
"default": false,
"description": "Show a text pop-up when timer is done (applies on restart of VS Code)."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.49.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {
"play-sound": "^1.1.3"
}
}