-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
231 lines (231 loc) · 4.96 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"name": "warm-up-typing-test",
"displayName": "Warm Up - Typing test",
"publisher": "Jeusto",
"description": "🔥👨💻 Improve your typing speed by practicing right inside your code editor. Practice with simple words or code snippets.",
"repository": {
"type": "git",
"url": "https://github.com/Jeusto/vscode-typing-test"
},
"icon": "icon.png",
"version": "1.1.0",
"license": "GPL 3.0",
"keywords": [
"arhun saday",
"jeusto",
"warm up",
"warmup",
"typing",
"typing speed",
"improve typing",
"keyboard",
"practice typing",
"typing-test",
"practice",
"typing"
],
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:warmUp.start",
"onWebviewPanel:warmUp",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.switchNaturalLanguage": {
"type": "string",
"enum": [
"english",
"italian",
"german",
"spanish",
"chinese",
"korean",
"polish",
"punjabi",
"swedish",
"french",
"portuguese",
"russian",
"finnish",
"turkish",
"englishTop1000"
],
"default": "english",
"description": "Choose a natural language to practice with.",
"scope": "window"
}
}
},
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.switchProgrammingLanguage": {
"type": "string",
"enum": [
"javascript",
"python",
"java",
"csharp",
"php",
"typescript",
"cpp",
"c",
"go",
"kotlin",
"ruby",
"rust"
],
"default": "javascript",
"description": "Choose a specific programming language to practice with.",
"scope": "window"
}
}
},
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.changeTypingMode": {
"type": "string",
"enum": [
"words (fixed amount)",
"words (against the clock)",
"code snippets"
],
"default": "words (fixed amount)",
"description": "Practice with a fixed amount of words, against the clock or with code snippets.",
"scope": "window"
}
}
},
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.togglePunctuation": {
"type": "string",
"enum": [
"true",
"false"
],
"default": "false",
"description": "Enable or disable punctuation (doesn't affect \"code snippets\" mode)",
"scope": "window"
}
}
},
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.changeCount": {
"type": "string",
"enum": [
"15",
"30",
"60",
"120",
"240"
],
"default": "15",
"description": "Change the amount of words or the clock timer (doesn't concern \"code snippets\" mode).",
"scope": "window"
}
}
},
{
"title": "Warm Up: Typing test",
"properties": {
"warmUp.toggleColorBlindMode": {
"type": "string",
"enum": [
"true",
"false"
],
"default": "false",
"description": "Enable or disable color bind mode (doesn't concern \"code snippets\" mode)",
"scope": "window"
}
}
}
],
"commands": [
{
"command": "warmUp.start",
"title": "Start typing test",
"category": "Warm Up"
},
{
"command": "warmUp.switchNaturalLanguage",
"title": "Switch natural language",
"category": "Warm Up"
},
{
"command": "warmUp.switchProgrammingLanguage",
"title": "Switch programming language",
"category": "Warm Up"
},
{
"command": "warmUp.changeTypingMode",
"title": "Change typing mode",
"category": "Warm Up"
},
{
"command": "warmUp.changeCount",
"title": "Change word/time count",
"category": "Warm Up"
},
{
"command": "warmUp.togglePunctuation",
"title": "Toggle punctuation",
"category": "Warm Up"
},
{
"command": "warmUp.toggleColorBlindMode",
"title": "Toggle color blind mode",
"category": "Warm Up"
},
{
"command": "warmUp.practiceWithSelection",
"title": "Practice with selected code snippet",
"category": "Warm Up"
}
],
"keybindings": [
{
"command": "warmUp.start",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p",
"when": ""
},
{
"command": "warmUp.practiceWithSelection",
"key": "ctrl+alt+s",
"mac": "cmd+alt+s",
"when": "editorHasSelection"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.3.5"
}
}