-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
221 lines (221 loc) · 7 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
{
"name": "vscode-twitch-themer",
"displayName": "Twitch Themer",
"description": "Allow viewers to change your VS Code theme via Twitch chat",
"version": "3.3.1",
"preview": false,
"publisher": "michaeljolley",
"license": "MIT",
"author": {
"name": "Michael Jolley",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.85.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Other"
],
"keywords": [
"theme",
"twitch",
"color",
"chat"
],
"repository": {
"type": "git",
"url": "https://github.com/michaeljolley/vscode-twitch-themer"
},
"homepage": "https://github.com/michaeljolley/vscode-twitch-themer#readme",
"galleryBanner": {
"color": "#373436",
"theme": "dark"
},
"icon": "resources/vscode-twitch-themer.png",
"extensionDependencies": [
"clarkio.vscode-twitch-authprovider"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "twitchThemer.toggleChat",
"title": "Toggle Chat",
"category": "Twitch Themer"
}
],
"configuration": {
"title": "Twitch Themer",
"properties": {
"twitchThemer.twitchChannelName": {
"title": "Twitch Channel to Join",
"type": "string",
"default": "",
"description": "The name of the Twitch channel to connect to."
},
"twitchThemer.accessState": {
"title": "View Access",
"type": "string",
"enum": [
"Viewers",
"Followers",
"Subscribers",
"VIPs",
"Moderators",
"Broadcaster"
],
"default": "Viewers",
"description": "Users who are allowed to use the extension via Twitch chat."
},
"twitchThemer.installState": {
"title": "Install Access",
"type": "string",
"enum": [
"Viewers",
"Followers",
"Subscribers",
"VIPs",
"Moderators",
"Broadcaster"
],
"default": "Followers",
"description": "Users who are allowed to use the install command."
},
"twitchThemer.autoInstall": {
"title": "Auto-install Theme Install Requests",
"type": "boolean",
"default": false,
"description": "If checked, will auto-install theme install requests. Otherwise, we will prompt you to install."
},
"twitchThemer.autoConnect": {
"title": "Auto Connect",
"type": "boolean",
"default": false,
"description": "Should Twitch Themer automatically connect to Twitch Chat if you're streaming? Twitch Themer will poll Twitch' API to ensure you're streaming prior to connecting."
},
"twitchThemer.redemptionHoldPeriodMinutes": {
"title": "Point Redemption Pause Minutes",
"type": "number",
"default": "5",
"description": "The number of minutes to pause theme changes if someone uses a point redemption."
},
"twitchThemer.redemptionHoldId": {
"title": "Pause Changes Reward Id",
"type": "string",
"default": "",
"description": "The unique id of the channel point redemption reward."
},
"twitchThemer.themeCommand": {
"title": "Theme Command",
"type": "string",
"default": "theme",
"description": "The command trigger to use."
},
"twitchThemer.installCommand": {
"title": "Install SubCommand",
"type": "string",
"default": "install",
"description": "The install sub-command trigger to use."
},
"twitchThemer.currentCommand": {
"title": "Current SubCommand",
"type": "string",
"default": "current",
"description": "The current sub-command trigger to use."
},
"twitchThemer.helpCommand": {
"title": "Help SubCommand",
"type": "string",
"default": "help",
"description": "The help sub-command trigger to use."
},
"twitchThemer.refreshCommand": {
"title": "Refresh SubCommand",
"type": "string",
"default": "refresh",
"description": "The refresh sub-command trigger to use."
},
"twitchThemer.repoCommand": {
"title": "Repo SubCommand",
"type": "string",
"default": "repo",
"description": "The repo sub-command trigger to use."
},
"twitchThemer.banCommand": {
"title": "Ban SubCommand",
"type": "string",
"default": "ban",
"description": "The ban sub-command trigger to use."
},
"twitchThemer.random": {
"title": "Random SubCommand",
"type": "string",
"default": "random",
"description": "The random sub-command trigger to use."
},
"twitchThemer.dark": {
"title": "Dark SubCommand",
"type": "string",
"default": "dark",
"description": "The 'dark' sub-command trigger to use."
},
"twitchThemer.light": {
"title": "Light SubCommand",
"type": "string",
"default": "light",
"description": "The 'light' sub-command trigger to use."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"compile": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"format": "npx prettier --write \"src/**/*.ts\"",
"test": "vscode-test"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/sinon": "^17.0.2",
"@types/tmi.js": "^1.8.3",
"@types/uuid": "^9.0.1",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"conventional-changelog-conventionalcommits": "^7.0.2",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"semantic-release-stop-before-publish": "^1.0.0",
"semantic-release-vsce": "^5.6.4",
"sinon": "^17.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.2",
"axios": "^1.6.5",
"comfy.js": "^1.1.16"
}
}