-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.38 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.38 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
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
{
"name": "lab-notifications",
"displayName": "Lab Notifications",
"description": "A status bar icon that notifies you about notifications on GitLab.",
"version": "1.0.1",
"publisher": "logerfo",
"engines": {
"vscode": "^2023.0.0"
},
"bugs": {
"url": "https://github.com/Logerfo/lab-notifications/issues",
"email": "bruno@logerfo.com.br"
},
"author": {
"email": "bruno@logerfo.com.br",
"name": "Bruno Logerfo",
"url": "https://github.com/Logerfo"
},
"icon": "icon.png",
"license": "MIT",
"homepage": "https://github.com/Logerfo/lab-notifications/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Logerfo/lab-notifications.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"type": "object",
"title": "Lab Notifications",
"properties": {
"lab-notifications.refreshInterval": {
"type": "number",
"description": "Amount of seconds to wait before each refresh",
"default": 300
},
"lab-notifications.privateToken": {
"type": "string",
"description": "Private token used for requesting the notifications",
"default": ""
},
"lab-notifications.alignment": {
"type": "string",
"description": "Icon's position in the statusbar (left/right)",
"default": "right",
"enum": [
"left",
"right"
]
},
"lab-notifications.color": {
"type": "string",
"description": "Icon's color when there are some notifications",
"default": ""
},
"lab-notifications.hideIfNone": {
"type": "boolean",
"description": "Hide the icon if there are no notifications",
"default": true
},
"lab-notifications.showNumberOfNotifications": {
"type": "boolean",
"description": "Show the number of notifications alongside the icon",
"default": true
},
"lab-notifications.url": {
"type": "string",
"description": "Gitlab URL",
"default": "https://gitlab.com/"
}
}
}
],
"commands": [
{
"command": "lab-notifications.refresh",
"title": "Lab Notifications: Refresh"
},
{
"command": "lab-notifications.openInBrowser",
"title": "Lab Notifications: Open in Browser"
}
],
"menus": {
"commandPalette": [
{
"command": "lab-notifications.openInBrowser",
"when": "false"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"snyk-protect": "snyk-protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"lodash": "^4.17.11",
"pify": "^5.0.0",
"request": "^2.81.0",
"@snyk/protect": "^1.657.0"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "22.17.2",
"ts-loader": "9.5.2",
"tslint": "6.1.3",
"typescript": "5.9.2",
"@types/vscode": "1.31.0",
"webpack": "5.101.2",
"webpack-cli": "6.0.1"
},
"snyk": true
}