-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.14 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "mindful-coding",
"displayName": "Mindful Coding",
"description": "Reminds you to take breaks for window-gazing and stretching.",
"version": "1.1.1",
"publisher": "HousebirdGames",
"engines": {
"vscode": "^1.80.2"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"keywords": [
"productivity",
"mindfulness",
"health",
"break",
"reminder",
"stretch",
"window-gaze",
"well-being"
],
"categories": [
"Other"
],
"license": "MIT",
"icon": "Mindful-Coding-Logo.png",
"repository": {
"type": "git",
"url": "https://github.com/HousebirdGames/Mindful-Coding.git"
},
"homepage": "https://housebird.games",
"contributes": {
"configuration": {
"title": "Mindful Coding",
"properties": {
"mindfulCoding.general.reminderType": {
"type": "string",
"enum": [
"Notification",
"Status Bar",
"Annoying Popup",
"None"
],
"default": "None",
"description": "Choose how you want the reminders to be shown.",
"order": 1
},
"mindfulCoding.windowGaze.enable": {
"type": "boolean",
"default": true,
"description": "Enable the window-gaze reminder.",
"order": 2
},
"mindfulCoding.windowGaze.interval": {
"type": "number",
"default": 20,
"description": "Interval in minutes to remind you to look out of a window.",
"order": 3
},
"mindfulCoding.stretch.enable": {
"type": "boolean",
"default": true,
"description": "Enable the stretch reminder.",
"order": 4
},
"mindfulCoding.stretch.interval": {
"type": "number",
"default": 45,
"description": "Interval in minutes to remind you to stretch.",
"order": 5
},
"mindfulCoding.customReminders.enable": {
"type": "boolean",
"default": true,
"description": "Enable all custom reminders.",
"order": 6
},
"mindfulCoding.customReminders.list": {
"type": "array",
"default": [],
"description": "Custom reminders with user-defined text and intervals. Use the 'Manage Custom Reminders' command to edit these.",
"items": {
"type": "object",
"required": [
"text",
"interval"
],
"properties": {
"text": {
"type": "string",
"description": "The reminder message (cannot be empty)",
"minLength": 1
},
"interval": {
"type": "integer",
"description": "Interval in minutes (minimum 1)",
"minimum": 1
}
}
},
"order": 7
}
}
},
"commands": [
{
"command": "mindfulCoding.openSettings",
"title": "Mindful Coding: Open Settings"
},
{
"command": "mindfulCoding.manageCustomReminders",
"title": "Mindful Coding: Manage Custom Reminders"
}
]
},
"devDependencies": {
"vscode": "^1.80.2"
}
}