-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.48 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
{
"name": "coderadiolite",
"displayName": "Code Radio Lite",
"description": "Code Radio: 24/7 music designed for coding",
"keywords": [
"coderadio",
"coderadiolite",
"Code Radio",
"Code Radio Lite",
"code-radio-vscode",
"radio"
],
"publisher": "obroom",
"icon": "logo.png",
"version": "1.0.2",
"license": "MIT",
"engines": {
"vscode": "^1.50.0"
},
"homepage": "https://github.com/kookob/code-radio-vscode",
"repository": {
"type": "git",
"url": "https://github.com/kookob/code-radio-vscode.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "coderadio.play",
"title": "Code Radio - play"
},
{
"command": "coderadio.stop",
"title": "Code Radio - stop"
}
],
"configuration": {
"title": "Code Radio",
"properties": {
"coderadio.vlc_path": {
"description": "vlc executable path",
"type": "string"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"package": "yarn lint && yarn compile && vscde package"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"typescript": "^4.0.2"
}
}