-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.16 KB
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
{
"name": "vsadhkar",
"displayName": "VSAdhkar",
"description": "VSAdhkar is a Visual Studio Code extension that brings daily adhkar (Islamic remembrances) and dua (supplications) directly into your coding environment. Stay spiritually connected while you work with timely notifications featuring essential adhkar and duas.",
"version": "1.0.3",
"repository": "https://github.com/azizbecha/vsadhkar",
"icon": "vsadhkar.png",
"publisher": "azizbecha",
"scripts": {
"vscode:prepublish": "bun run compile",
"compile": "tsdown src/extension.ts --format cjs --external vscode --dts --out-dir out",
"watch": "tsdown src/extension.ts --format cjs --external vscode --out-dir out --watch",
"pretest": "bun run compile && bun run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.cjs",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "exampleSidebar",
"title": "VSAdhkar Settings",
"icon": "$(heart)"
}
]
},
"views": {
"exampleSidebar": [
{
"type": "webview",
"id": "vsadhkar.exampleWebview",
"name": "VSAdhkar Settings"
}
]
},
"commands": [
{
"command": "vsadhkar.getDhikr",
"title": "Get Dhikr"
},
{
"command": "vsadhkar.openSettings",
"title": "Open VSAdhkar Settings Panel"
},
{
"command": "vsadhkar.selectLocation",
"title": "Select location"
},
{
"command": "vsadhkar.clearData",
"title": "Clear all data"
}
]
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"tsdown": "^0.20.3",
"typescript": "^5.4.5"
},
"dependencies": {
"moment": "^2.30.1"
}
}