-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "twitchdev",
"displayName": "TwitchDev",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "highlighter.highlightLine",
"title": "Highlight Line"
},
{
"command": "highlighter.unhighlightLine",
"title": "Unhighlight Line"
},
{
"command": "highlighter.connect",
"title": "Connect to Twitch Chat"
}
],
"configuration": {
"title": "Highlighter",
"properties": {
"highlighter.oauthToken": {
"type": "string",
"default": "",
"description": "OAuth token for Twitch"
},
"highlighter.channelName": {
"type": "string",
"default": "",
"description": "Channel name for Twitch"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@octokit/rest": "^20.1.1",
"tmi.js": "^1.8.5"
}
}