-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.91 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.91 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
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
{
"name": "simple-visual-bar-timer",
"displayName": "Simple Visual Bar Timer",
"description": "A simple visual bar timer in the status bar.",
"keywords": [
"simple",
"visual",
"bar",
"timer",
"status bar"
],
"repository": {
"type": "git",
"url": "https://github.com/officel/SVBT"
},
"bugs": {
"url": "https://github.com/officel/SVBT/issues"
},
"version": "0.0.15",
"license": "MIT",
"publisher": "officel",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.105.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.cjs",
"contributes": {
"commands": [
{
"command": "simple-visual-bar-timer.startTimer",
"title": "SVBT Start Timer"
},
{
"command": "simple-visual-bar-timer.stopTimer",
"title": "SVBT Stop Timer"
}
],
"configuration": {
"title": "Simple Visual Bar Timer",
"properties": {
"simpleVisualBarTimer.defaultDuration": {
"type": "number",
"default": 25,
"description": "The default duration for the timer in minutes."
},
"simpleVisualBarTimer.remainingChar": {
"type": "string",
"default": "▮",
"description": "The character representing the remaining time."
},
"simpleVisualBarTimer.elapsedChar": {
"type": "string",
"default": "▯",
"description": "The character representing the elapsed time."
},
"simpleVisualBarTimer.barCount": {
"type": "number",
"default": 10,
"minimum": 5,
"maximum": 30,
"description": "The number of bars to display in the timer."
},
"simpleVisualBarTimer.timerMode": {
"type": "string",
"enum": [
"countdown",
"countup"
],
"default": "countdown",
"description": "The mode of the timer. 'countdown' will count down from the duration, 'countup' will count up to the duration."
}
}
}
},
"type": "module",
"scripts": {
"watch": "webpack --watch",
"test": "jest",
"dev": "webpack --mode development",
"package": "webpack --mode production --devtool hidden-source-map",
"vscode:vsix": "npx vsce package",
"vscode:prepublish": "npm run package"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "25.x",
"@types/vscode": "^1.110.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"dependencies": {
"@vscode/vsce": "^3.7.1"
},
"overrides": {
"rimraf": "^4.0.0",
"glob": "^9.0.0"
},
"files": [
"dist/extension.cjs",
"resources/icon.png",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}