-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "twitch-highlighter",
"displayName": "Twitch Highlighter",
"description": "Allows Twitch viewers to redeem channel points in order to highlight a line in the streamer's text editor",
"version": "1.1.0",
"publisher": "haliphax",
"repository": "https://github.com/haliphax/code-twitch-highlighter",
"engines": {
"vscode": "^1.76.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Twitch Highlighter",
"properties": {
"twitchHighlighter.backgroundColor": {
"type": "string",
"default": "#529",
"description": "Background color of the highlighted line"
},
"twitchHighlighter.border": {
"type": "string",
"default": "none",
"description": "Border style of the highlighted line"
},
"twitchHighlighter.channel": {
"type": "string",
"default": null,
"description": "The channel name to receive redemption events from"
},
"twitchHighlighter.color": {
"type": "string",
"default": "#f0f",
"description": "Foreground color of the highlighted line"
},
"twitchHighlighter.fontWeight": {
"type": "string",
"default": "bold",
"description": "Font weight of the highlighted line"
},
"twitchHighlighter.rewardId": {
"type": "string",
"default": null,
"description": "Internal ID of the channel points reward"
}
}
}
},
"scripts": {},
"devDependencies": {
"@types/vscode": "^1.76.0"
},
"dependencies": {
"tmi.js": "^1.8.5"
}
}