-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.46 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
{
"name": "twitch-chat",
"displayName": "Twitch Chat",
"description": "VS code Extension for Twitch Chat Integration",
"version": "0.2.1",
"publisher": "hammster1911",
"repository": {
"type": "git",
"url": "https://github.com/Hammster/twitch-chat.git"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:twitchChat"
],
"main": "./out/src/extension",
"icon": "media/twitchChat.png",
"contributes": {
"views": {
"explorer": [{
"id": "twitchChat",
"name": "Twitch Chat"
}]
},
"commands": [{
"command": "twitchChat.sendMessage",
"title": "Twitch Chat: Send Chat message",
"icon": {
"dark": "resources/dark/string.svg",
"light": "resources/light/string.svg"
}
},
{
"command": "twitchChat.openActiveStream",
"title": "Twitch Chat: Open active stream",
"icon": {
"dark": "resources/dark/link.svg",
"light": "resources/light/link.svg"
}
},
{
"command": "twitchChat.changeChannel",
"title": "Twitch Chat: Change selected channel",
"icon": {
"dark": "resources/dark/link.svg",
"light": "resources/light/link.svg"
}
}],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"twitchChat.historysize": {
"type": "number",
"default": 20,
"description": "Amount of chatmessages that are keept in cache for the sesssion"
},
"twitchChat.oauth": {
"type": "string",
"default": "",
"description": "DONT SHOW THIS IN STREAM!!!!, Your twitch token, Generate a token here: http://www.twitchapps.com/tmi"
},
"twitchChat.username": {
"type": "string",
"default": "",
"description": "Your Twitch username."
},
"twitchChat.channel": {
"type": "string",
"default": "",
"description": "The channel name. For Twitch, use [your channel/user name] without a hashtag."
}
}
},
"menus": {
"view/title": [
{
"command": "twitchChat.sendMessage",
"when": "view == twitchChat",
"group": "navigation"
},
{
"command": "twitchChat.openActiveStream",
"when": "view == twitchChat",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "9.4.0",
"typescript": "^2.6.2",
"vscode": "^1.1.10"
},
"dependencies": {
"twitch-bot": "^1.2.2"
}
}