-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.37 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
{
"name": "prayer-time",
"displayName": "Prayer Time",
"description": "Stay connected to your faith while coding with the 'Prayer Time' extension for Visual Studio Code.",
"version": "0.2.3",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"icon": "assets/icon.png",
"activationEvents": [
"*"
],
"keywords": [
"ibadah",
"sholat",
"muslim",
"moslem",
"islam",
"prayer",
"jadwal"
],
"publisher": "arsyaadi",
"author": {
"name": "Arsya Adi Swtiawan",
"url": "https://github.com/arsyaadi"
},
"repository": {
"type": "git",
"url": "https://github.com/arsyaadi/prayer-time-extension"
},
"maintainers": [
{
"name": "Arsya Adi Setiawan",
"email": "[email protected]",
"url": "https://github.com/arsyaadi"
}
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "prayer-time.setPrayerLocation",
"title": "Prayer Time: Select Prayer Time Location"
},
{
"command": "prayer-time.showPrayerTime",
"title": "Prayer Time: Show Prayer Time"
},
{
"command": "prayer-time.setReminderTime",
"title": "Prayer Time: Set Reminder Time"
}
],
"configuration": {
"type": "object",
"title": "Prayer Time",
"properties": {
"prayer-time.prayerLocation": {
"type": "string",
"default": "",
"description": "Stores the selected prayer location."
},
"prayer-time.showReminder": {
"type": "boolean",
"default": false,
"description": "Stores whether to show reminders for prayer time."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"node-schedule": "^2.1.1"
}
}