-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
{
"name": "themeshift",
"displayName": "ThemeShift",
"description": "Schedule theme changes during the day.",
"version": "0.0.4",
"publisher": "kjudson",
"license": "Apache-2.0",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Other"
],
"keywords": [
"theme",
"schedule"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"configuration": {
"title": "ThemeShift",
"properties": {
"themeshift.sunset": {
"type": "string",
"default": "18:00",
"description": "Time when the sun goes down (e.g. 20:00) or \"auto\""
},
"themeshift.sunrise": {
"type": "string",
"default": "07:00",
"description": "Time when the sun comes up (e.g. 08:00) or \"auto\""
},
"themeshift.daytheme": {
"type": "string",
"default": "Default Light+",
"description": "Theme to set for daytime"
},
"themeshift.nighttheme": {
"type": "string",
"default": "Default Dark+",
"description": "Theme to set for nights"
}
}
},
"commands": [
{
"command": "extension.dayshift",
"title": "ThemeShift: Shift to Day Theme"
},
{
"command": "extension.nightshift",
"title": "ThemeShift: Shift to Night Theme"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"eslint": "^5.7.0",
"mocha": "^5.2.0",
"typescript": "^3.1.3",
"vscode": "^1.1.21"
},
"dependencies": {
"moment": "^2.22.2",
"node-fetch": "^2.6.1"
},
"author": {
"name": "Kevin Judson"
},
"repository": {
"type": "git",
"url": "https://github.com/kjudson/vscode-themeshift"
}
}