-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.32 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
{
"name": "dev-balance",
"displayName": "Dev Balance",
"description": "Reminds developers to take healthy breaks during coding sessions.",
"publisher": "sinaebadi",
"version": "1.0.1",
"engines": {
"vscode": "^1.70.0"
},
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"properties": {
"devBalance.workDurationMinutes": {
"type": "number",
"default": 30,
"description": "Work session duration before break reminder (in minutes)"
},
"devBalance.breakDurationMinutes": {
"type": "number",
"default": 5,
"description": "Break duration in minutes before work resumes."
},
"devBalance.enableSound": {
"type": "boolean",
"default": true,
"description": "Play a sound when break or work notifications are shown."
}
}
},
"commands": [
{
"command": "devBalance.pauseTimer",
"title": "Dev Balance: Pause Timer"
},
{
"command": "devBalance.resumeTimer",
"title": "Dev Balance: Resume Timer"
},
{
"command": "devBalance.resetTimer",
"title": "Dev Balance: Reset Timer"
},
{
"command": "devBalance.showDailyReport",
"title": "Show Daily Report"
},
{
"command": "devBalance.showMonthlyReport",
"title": "Dev Balance: Show Monthly Report"
},
{
"command": "devBalance.showYearlyReport",
"title": "Dev Balance: Show Yearly Report"
},
{
"command": "devBalance.selectReport",
"title": "Dev Balance: Select Report"
},
{
"command": "devBalance.clearLogs",
"title": "Dev Balance: Clear All Logs"
},
{
"command": "devBalance.showLogs",
"title": "DevBalance: Show Logs"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./"
},
"devDependencies": {
"@types/node": "^22.15.12",
"@types/vscode": "^1.70.0",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cnaebadi/devbalance.git"
},
"dependencies": {
"play-sound": "^1.1.6"
},
"files": [
"dist",
"assets"
]
}