-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.2 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
{
"name": "auto-day-night-theme-switcher",
"displayName": "Auto Day Night Theme Switcher",
"description": "Automatically switch between day and night color themes based on given times.",
"version": "0.2.0",
"publisher": "jakobjw",
"author": {
"name": "Rakhim Davletkaliyev, jakobjw"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#947500",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/jakobjw/VSCodeExtension_AutoDayNightThemeSwitcher"
},
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"keywords": [
"theme",
"switch",
"day",
"night",
"auto",
"time"
],
"license": "SEE LICENSE IN LICENSE",
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "autoDayNightThemeSwitcher.switchToNightTheme",
"title": "Night Theme"
},
{
"command": "autoDayNightThemeSwitcher.switchToDayTheme",
"title": "Day Theme"
},
{
"command": "autoDayNightThemeSwitcher.toggleDayNightTheme",
"title": "Toggle Day/Night Theme"
}
],
"keybindings": [
{
"command": "autoDayNightThemeSwitcher.toggleDayNightTheme",
"key": "ctrl+alt+t",
"mac": "cmd+alt+t"
}
],
"configuration": {
"type": "object",
"title": "Auto Day Night Theme Switcher",
"properties": {
"autoDayNightThemeSwitcher.autoToggle": {
"type": "boolean",
"default": true,
"description": "If enabled, toggle to day and night theme automatically given the times"
},
"autoDayNightThemeSwitcher.autoToggleTimeNightBegin": {
"type": "string",
"default": "19:00",
"description": "Time when the automatic toggle to the night theme shall be done (if auto-toggle enabled)"
},
"autoDayNightThemeSwitcher.autoToggleTimeNightEnd": {
"type": "string",
"default": "7:00",
"description": "Time when the automatic toggle to the day theme shall be done (if auto-toggle enabled)"
},
"autoDayNightThemeSwitcher.dayTheme": {
"type": "string",
"default": "Visual Studio Light",
"description": "The day theme"
},
"autoDayNightThemeSwitcher.dayThemeCustomizations": {
"type": "object",
"default": {},
"description": "The day theme color customizations"
},
"autoDayNightThemeSwitcher.nightTheme": {
"type": "string",
"default": "Visual Studio Dark",
"description": "The night theme"
},
"autoDayNightThemeSwitcher.nightThemeCustomizations": {
"type": "object",
"default": {},
"description": "The night theme color customizations"
},
"autoDayNightThemeSwitcher.toggleDefaultNight": {
"type": "boolean",
"default": true,
"description": "If neither day or night theme are the current theme and toggle is triggered, switch to night theme"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}