-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.03 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
{
"name": "hadith",
"displayName": "Hadith",
"description": "Get a Hadith from the Sunnah while you're coding 💻 keep in touch with the Sayings and Teachings of the Prophet Muhammed (ﷺ) 🕌💚",
"version": "0.1.3",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/SABER-MOHAMED/Hadith"
},
"publisher": "MohamedSaber",
"author": "Mohamed Saber <[email protected]>",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"keywords": [
"adhkar",
"sunnah",
"Ayat",
"hadith",
"quran",
"quotes",
"Islam"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "hadith.getHadith",
"category": "Hadith",
"title": "Get Hadith",
"icon": {
"light": "images/icon.png",
"dark": "images/icon.png"
}
}
],
"configuration": {
"type": "object",
"title": "Hadith",
"properties": {
"hadith.repeatedEveryMinute": {
"type": "number",
"default": 20,
"enum": [
10,
20,
30,
40,
50,
60
],
"description": "Select time between Hadith notifications."
},
"hadith.language": {
"type": "string",
"description": "Select the language of Hadith",
"default": "Arabic",
"enum": [
"Arabic",
"English"
]
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@vscode/test-electron": "^2.2.2",
"eslint": "^8.33.0",
"glob": "^8.1.0",
"mocha": "^10.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^0.27.2"
}
}