-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
{
"name": "vscode-winddown",
"displayName": "Winddown",
"version": "0.0.3",
"description": "Be reminded to get off the screen without being interrupted.",
"author": {
"name": "schneefux"
},
"publisher": "winddown",
"repository": {
"type": "git",
"url": "git+https://github.com/schneefux/vscode-winddown"
},
"main": "dist/extension.js",
"scripts": {
"dev": "webpack --mode development --progress",
"build": "webpack --mode production"
},
"dependencies": {
"chroma-js": "^2.1.0",
"json5": "^2.1.2"
},
"devDependencies": {
"@types/chroma-js": "^2.0.0",
"@types/json5": "0.0.30",
"@types/node": "12.12.26",
"@types/vscode": "1.42.0",
"clean-webpack-plugin": "^3.0.0",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"vsce": "^1.74.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"engines": {
"vscode": "^1.42.0"
},
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "winddown.postpone",
"title": "Winddown: Restore the colors and postpone the current break for a few minutes"
}
],
"configuration": {
"type": "object",
"title": "Winddown",
"properties": {
"winddown.minutesTillBreak": {
"type": "number",
"default": 25,
"description": "Time in minutes until theme colors start fading out."
},
"winddown.winddownDurationMinutes": {
"type": "number",
"default": 5,
"description": "Time in minutes until theme colors have fully faded out."
},
"winddown.breakDurationMinutes": {
"type": "number",
"default": 3,
"description": "Time in minutes until theme colors are reset to normal."
},
"winddown.framesPerMinute": {
"type": "number",
"default": 4,
"description": "Color update frequency during winddown. Usually you do not need to change this. Lower it if you are distracted by screen flashes, increase it for smoother color transitions. Must be between 1 and 60."
},
"winddown.postponeDurationMinutes": {
"type": "number",
"default": 5,
"description": "Time in minutes you can postpone your break."
}
}
}
}
}