-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.43 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
{
"name": "pomodoro-clock",
"displayName": "Pomodoro Clock",
"description": "Pomodoro Clock for vscode",
"version": "1.0.2",
"author": "jackluson",
"publisher": "jackluson",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"icon": "pomodoro-clock.png",
"contributes": {
"commands": [
{
"command": "pomodoroClock.startPomodoro",
"title": "Start Pomodoro"
},
{
"command": "pomodoroClock.pausePomodoro",
"title": "Pause Pomodoro"
},
{
"command": "pomodoroClock.continuePomodoro",
"title": "Continue Pomodoro"
},
{
"command": "pomodoroClock.restartPomodoro",
"title": "Restart Pomodoro"
},
{
"command": "pomodoroClock.resetPomodoro",
"title": "Reset Pomodoro"
},
{
"command": "pomodoroClock.toggleCurrentPomodoroCountdown",
"title": "toggle Current Pomodoro Countdown"
}
],
"configuration": {
"type": "object",
"title": "PomodoroClock Configuration",
"properties": {
"pomodoroClock.workTime": {
"type": "number",
"default": 25,
"description": "Time of work, in minutes."
},
"pomodoroClock.breakTime": {
"type": "number",
"default": 5,
"description": "Time of break, in minutes"
},
"pomodoroClock.longBreakTime": {
"type": "number",
"default": 15,
"description": "Time of long break, in minutes"
},
"pomodoroClock.repeat": {
"type": "number",
"default": 4,
"description": "Number of repeat before long break"
},
"pomodoroClock.countdown": {
"type": "boolean",
"default": true,
"description": "Whether to use countdown display"
}
}
}
},
"keywords": [
"Pomodoro",
"Clock",
"Timer",
"Task"
],
"repository": {
"type": "git",
"url": "https://github.com/jackluson/vscode-pomodoro-clock.git"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "9.1.1",
"@types/node": "16.11.60",
"@types/vscode": "1.64.0",
"mocha": "6.2.3",
"typescript": "4.8.3"
},
"dependencies": {}
}