-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.16 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
{
"name": "twitch-chat",
"displayName": "Twitch Chat",
"description": "Display Twitch chat as a tab",
"icon": "icon.png",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"version": "0.0.9",
"publisher": "kamerat",
"keywords": [
"Twitch",
"Twitc",
"Chat",
"Stream",
"Tabs"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/kamerat/vs-code-twitch-chat/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kamerat/vs-code-twitch-chat.git"
},
"activationEvents": [
"onCommand:twitch.open"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "twitch.open",
"title": "Twitch: Open chat"
}
],
"configuration": {
"type": "object",
"title": "Twitch Chat",
"properties": {
"twitch.oauth": {
"type": "string",
"default": "",
"markdownDescription": "Your twitch token, must start with `oauth:`. Generate a token here: [n0.no/twitch](https://www.n0.no/twitch). `Do not leak to stream!` *(If you do, [delete it](https://www.twitch.tv/settings/connections))*"
},
"twitch.username": {
"type": "string",
"default": "",
"description": "Your Twitch username."
},
"twitch.channel": {
"type": "string",
"default": "bobross",
"description": "Your Twitch channel/user name"
},
"twitch.alert": {
"type": "boolean",
"default": "false",
"markdownDescription": "Display popup alerts on new messages *(If chat window is not focused)*"
},
"twitch.fontSize": {
"type": "string",
"default": "14px",
"markdownDescription": "Sets the chat window's font size"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"autolinker": "^2.2.2",
"dompurify": "^2.2.2",
"jsdom": "^16.4.0",
"request": "^2.88.2",
"twitch-bot": "^1.2.5",
"twitch-emoticons": "github:kamerat/twitch-emoticons"
}
}