-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 3.69 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "inspiredev",
"displayName": "InspireDev",
"description": "InspireDev delivers daily doses of motivation and humor, keeping you inspired and energized throughout your coding journey.",
"version": "1.8.0",
"icon": "media/icon.png",
"publisher": "tanukii",
"license": "GPL-3.0-only",
"author": {
"name": "untanukii",
"discord": "@untanukii",
"twitter": "@untanukii"
},
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"keywords": [
"quotes",
"motivation",
"inspiredev",
"boost",
"inspiration",
"coding",
"programming",
"humor"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "inspiredev.randomQuote",
"title": "InspireDev: Random Quote"
}
],
"configuration": {
"type": "object",
"properties": {
"inspiredev.language": {
"type": "string",
"description": "The language of the quotes",
"enum": [
"en",
"fr",
"es"
],
"default": "en"
},
"inspiredev.showOnStartup": {
"type": "boolean",
"description": "Show a motivational quote on startup",
"default": true
},
"inspiredev.notificationInterval": {
"type": "number",
"description": "Sets the interval (in minutes) for displaying motivational notifications during a coding session.",
"default": 60
},
"inspiredev.customQuotes": {
"type": "array",
"description": "Add your own motivational quotes",
"items": {
"type": "string"
},
"default": []
},
"inspiredev.quoteFormat": {
"type": "string",
"description": "Format of the notification",
"enum": [
"%quote%",
"InspireDev - %quote%"
],
"default": "InspireDev - %quote%"
},
"inspiredev.displayPosition": {
"type": "string",
"description": "Position of the notification",
"enum": [
"notification",
"statusBar (left)",
"statusBar (right)"
],
"default": "notification"
},
"inspiredev.playSound": {
"type": "boolean",
"description": "Play a sound when a notification is displayed",
"default": true
},
"inspiredev.soundVolume": {
"type": "number",
"description": "Volume of the notification sound",
"default": 25,
"minimum": 0,
"maximum": 100
},
"inspiredev.soundName": {
"type": "string",
"description": "Notification sound",
"enum": [
"Never Back Down Never What?",
"Giga Chad Music",
"Sigma Music",
"Oh oh oh Gotaga",
"Dark Souls 3 - Boss Theme",
"Never Give Up Your Waaaaaay",
"Just Do It (Shia LaBeouf)",
"Random"
],
"default": "Never Back Down Never What?"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.92.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"dependencies": {
"sound-play": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/UnTanukii/InspireDev"
},
"note": "I love VS Code MarketPlace ^^"
}