-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
232 lines (232 loc) · 6.63 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"name": "meerkatio",
"publisher": "MeerkatIO",
"displayName": "MeerkatIO: Personal Notification Tool",
"description": "Personal notification tool for multi-tasking software developers",
"version": "1.11.1",
"engines": {
"vscode": "^1.95.0"
},
"extensionKind": [
"workspace"
],
"categories": [
"Notebooks",
"Data Science",
"Other",
"Machine Learning",
"AI"
],
"keywords": [
"alert",
"notification",
"terminal history",
"task",
"debug",
"remote work",
"productivity",
"Slack",
"Microsoft Teams",
"Google Chat",
"SMS",
"Email",
"system tray",
"push notification",
"jupyter",
"notebook",
"terminal",
"command prompt",
"AI summary",
"log processing"
],
"activationEvents": [
"*"
],
"icon": "images/logo-transparent.png",
"galleryBanner": {
"color": "#1e76c9",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/2514millerj/vscode-meerkatio.git"
},
"main": "./src/extension.js",
"contributes": {
"walkthroughs": [
{
"id": "meerkatio.getStarted",
"title": "Get Started with MeerkatIO",
"description": "Start reclaiming time in your day and set up MeerkatIO to step away from your computer with confidence.",
"steps": [
{
"id": "get-started-free",
"title": "Welcome to MeerkatIO",
"description": "Thank you for installing MeerkatIO, your personal notification tool! ",
"media": {
"markdown": "walkthroughs/free-welcome.md"
}
},
{
"id": "configure-notification-channel",
"title": "Set Your Notification Channel",
"description": "The MeerkatIO extension makes it simple to change notification channels to fit your workflow. \n\n[Set Your Notification Channel](command:meerkat.setNotificationChannel)",
"media": {
"markdown": "walkthroughs/configure-notification-channel.md"
}
},
{
"id": "configure-notification-trigger",
"title": "Configure Execution Duration",
"description": "Noisy alerts get ignored, configure your alert trigger duration to make the most out of your notifications. \n\n[Configure Trigger](command:meerkat.setExecutionTriggerDuration)",
"media": {
"markdown": "walkthroughs/configure-notification-trigger.md"
}
},
{
"id": "track-execution-history",
"title": "Track Your Execution History",
"description": "Wondering how much time your processes take out of your day? Get a full execution history and useful summary metrics of your notifications in VS Code! \n\n[Go To Notification History](command:meerkat.openNotificationHistory)",
"media": {
"markdown": "walkthroughs/track-execution-history.md"
}
}
]
}
],
"commands": [
{
"command": "meerkat.login",
"title": "MeerkatIO: Login"
},
{
"command": "meerkat.openNotificationHistory",
"title": "MeerkatIO: Open Notification History"
}, {
"command": "meerkat.setNotificationChannel",
"title": "MeerkatIO: Set Notification Channel"
}, {
"command": "meerkat.setExecutionTriggerDuration",
"title": "MeerkatIO: Set Execution Trigger Duration"
}, {
"command": "meerkat.analyzeLastNotificationOutput",
"title": "Summarize Last Notification Output"
}
],
"configuration": {
"type": "object",
"title": "MeerkatIO Notification Options",
"properties": {
"meerkat.token": {
"type": "string",
"description": "MeerkatIO Platform token for enabling Slack, Microsoft Teams, Google Chat, SMS, and Email notifications. This property only needs to be set if you did not log in through the VS Code OAuth flow using GitHub.",
"scope": "resource"
},
"meerkat.meerkatNotification": {
"type": "string",
"description": "Configure the notification channel from the MeerkatIO Platform. Choose from ping, system, slack, sms, or email",
"default": "ping",
"scope": "resource",
"enum": [
"ping",
"system",
"slack",
"teams",
"google_chat",
"sms",
"email"
],
"enumDescriptions": [
"(default) Sound Notification",
"System Tray Notification",
"Slack Notification",
"Microsoft Teams Notification",
"Google Chat Notification",
"SMS Notification",
"Email Notification"
]
},
"meerkat.enabled": {
"type": "boolean",
"description": "Toggle MeerkatIO notifications on and off",
"default": true,
"scope": "resource"
},
"meerkat.triggerMinDurationSeconds": {
"type": "integer",
"description": "The minimum duration in seconds code must run to cause an alert to be triggered. This avoids noisy alerts on short tasks.",
"default": 30,
"scope": "resource"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "meerkat-sidebar-view",
"title": "MeerkatIO",
"icon": "images/logo-transparent.png"
}
],
"panel": [
{
"id": "meerkat-bottom-panel-view",
"title": "MeerkatIO",
"icon": "images/logo-transparent.png"
}
]
},
"views": {
"meerkat-sidebar-view": [
{
"type": "webview",
"id": "meerkat-sidebar",
"name": "Home",
"icon": "images/logo-transparent.png"
}
],
"meerkat-bottom-panel-view": [
{
"type": "webview",
"id": "meerkat-bottom-panel",
"name": "MeerkatIO"
}
]
},
"resources": [
{
"pattern": "audio/*.mp3",
"destination": "/audio"
},
{
"pattern": "images/*.png",
"destination": "/images"
},
{
"pattern": "src/*",
"destination": "/src"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "vscode-test"
},
"dependencies": {
"axios": "^1.6.8",
"moment": "^2.30.1",
"node-notifier": "^10.0.1",
"play-sound": "^1.1.6",
"ps-list": "^7.2.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.95.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}