-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
122 lines (122 loc) · 3.67 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
122
{
"name": "lightswitch",
"version": "0.2.1",
"displayName": "Light Switch",
"description": "Light Switch allows you to set two themes that swap around day & night. All you have to do is pick your themes and set your preferred times.",
"publisher": "timrodz",
"author": {
"name": "Juan Alejandro Morais",
"email": "[email protected]",
"url": "https://timrodz.dev/"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"keywords": [
"Light Switch",
"Theme Switch"
],
"activationEvents": [
"*"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"category": "Light Switch",
"command": "lightSwitch.swapThemes",
"title": "Swap themes"
},
{
"category": "Light Switch",
"command": "lightSwitch.setThemeDark",
"title": "Switch To: Dark"
},
{
"category": "Light Switch",
"command": "lightSwitch.setThemeLight",
"title": "Switch To: Light"
}
],
"configuration": {
"title": "Light Switch",
"type": "object",
"properties": {
"lightSwitch.themeDark": {
"type": "string",
"default": "Default Dark+",
"description": "Theme that will be set during dark mode."
},
"lightSwitch.themeLight": {
"type": "string",
"default": "Visual Studio Light",
"description": "Theme that will be set during light mode."
},
"lightSwitch.switchTimeDark": {
"type": "string",
"default": "17:00",
"description": "24-hour local time that activates night mode. Format: hh:mm (i.e. 20:00, 10:30, 03:45).",
"markdownDescription": "24-hour local time that activates night mode. Format: `hh:mm` (i.e. `20:00`, `10:30`, `03:45`)."
},
"lightSwitch.switchTimeLight": {
"type": "string",
"default": "08:00",
"description": "24-hour local time that activates night mode. Format: hh:mm (i.e. 20:00, 10:30, 03:45).",
"markdownDescription": "24-hour local time that activates night mode. Format: `hh:mm` (i.e. `20:00`, `10:30`, `03:45`)."
}
}
}
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/timrodz/vscode-light_switch/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/timrodz/vscode-light_switch.git"
},
"bugs": {
"url": "https://github.com/timrodz/vscode-light_switch/issues",
"email": "[email protected]"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#064b47",
"theme": "dark"
},
"scripts": {
"deploy": "vsce publish --yarn",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode production && tsc -p ./",
"watch": "webpack --mode development && tsc -watch -p ./",
"test": "node ./out/test/runTest.js",
"test-compile": "tsc -p ./",
"format": "prettier --write src/**/*"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.43.0",
"dayjs": "^1.8.20",
"glob": "^7.1.7",
"husky": "^3.0.9",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-loader": "^6.2.1",
"tslint": "^5.12.1",
"typescript": "^3.8.3",
"vsce": "^1.73.0",
"vscode-test": "^1.0.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}