-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "hourly-math-code",
"displayName": "Hourly Math Code",
"description": "HouseLearning Hourly Math Code: periodic math challenges with audio, toast, and terminal interaction.",
"version": "0.1.3",
"publisher": "HouseLearningorg",
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Education"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Hourly Math Code",
"properties": {
"hourlyMathCode.intervalMinutes": {
"type": "number",
"default": 60,
"minimum": 1,
"maximum": 75,
"description": "Minutes between math problems (1–75)."
},
"hourlyMathCode.mathLevel": {
"type": "number",
"default": 3,
"minimum": 1,
"maximum": 5,
"description": "Math difficulty level (1–5) powered by HL‑VSMathEngine."
},
"hourlyMathCode.operations": {
"type": "array",
"items": {
"type": "string",
"enum": ["+", "-", "x", "/"]
},
"default": ["+", "-", "x", "/"],
"description": "Operations to include in problems."
}
}
}
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@vscode/vsce": "latest"
}
}