-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.72 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
{
"name": "quranradio",
"displayName": "Quran Radio",
"description": "A simple vs code extension to listen to Quran recitation",
"keywords": [
"quranradio",
" quran",
"radio",
"streaming",
"recitation"
],
"publisher": "MostafaWael",
"icon": "logo.png",
"version": "1.0.0",
"license": "MIT",
"engines": {
"vscode": "^1.50.0"
},
"homepage": "https://github.com/Mostafa-wael/Quran-Radio",
"repository": {
"type": "git",
"url": "https://github.com/Mostafa-wael/Quran-Radio.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "quranradio.play",
"title": "Quran Radio - play"
},
{
"command": "quranradio.stop",
"title": "Quran Radio - stop"
},
{
"command": "quranradio.changeRadio",
"title": "Quran Radio - changeRadio"
}
],
"configuration": {
"title": "Quran Radio",
"properties": {
"quranradio.vlc_path": {
"description": "vlc executable path",
"type": "string"
},
"quranradio.reminderInterval": {
"description": "interval(hour) to remind you of listening to Quran",
"type": "number"
}
}
}
},
"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"
}
}