-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
106 lines (106 loc) · 2.48 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
{
"name": "vscode-pomodoro",
"displayName": "vscode-pomodoro",
"icon": "images/icon.png",
"description": "pomodoro for developers",
"author": {
"name": "Yahya Gilany",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Ygilany/vscode-pomodoro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Ygilany/vscode-pomodoro"
},
"version": "1.0.3",
"publisher": "yahya-gilany",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:pomodoro.addTask",
"onCommand:pomodoro.run",
"onCommand:pomodoro.clear",
"onCommand:pomodoro.pause"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Pomodoro Configurations",
"properties": {
"pomodoro.task_duarion": {
"type": "number",
"default": 25,
"description": "The default duration of a Pomodoro Task in minutes"
},
"pomodoro.break_duarion": {
"type": "number",
"default": 5,
"description": "The default duration of a Break in minutes"
},
"pomodoro.long_break_duarion": {
"type": "number",
"default": 15,
"description": "The default duration of a long Break in minutes"
},
"pomodoro.counter_to_long_break": {
"type": "number",
"default": 3,
"description": "number of regular breaks before a long break"
},
"pomodoro.tasks_file": {
"type": "string",
"description": "full path to the tasks.json file"
}
}
},
"commands": [
{
"command": "pomodoro.addTask",
"title": "Pomodoro: Add Task"
},
{
"command": "pomodoro.run",
"title": "Pomodoro: Run tasks"
},
{
"command": "pomodoro.clear",
"title": "Pomodoro: Clear Completed Tasks Counter"
},
{
"command": "pomodoro.pause",
"title": "Pomodoro: Pause Timer"
},
{
"command": "pomodoro.finishTask",
"title": "Pomodoro: Finished Task"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^4.7.4",
"vscode": "^1.1.37",
"mocha": "^10.0.0",
"@types/node": "^18.0.6",
"@types/mocha": "^9.1.1"
},
"__metadata": {
"id": "f533a3a3-37aa-4833-9a0f-5725bbc07c3e",
"publisherDisplayName": "yahya-gilany",
"publisherId": "bfb52b26-74ec-438f-b537-3f7b79035ecb",
"isPreReleaseVersion": false
}
}