-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.11 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
{
"name": "vscode-theme-switcher",
"displayName": "Theme switcher",
"description": "Quickly switch between themes.",
"publisher": "JanBn",
"icon": "images/icon.png",
"version": "0.1.0",
"galleryBanner": {
"color": "#947500",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/JanBN/vscode-theme-switcher"
},
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"keywords": [
"theme",
"switch",
"cycle",
"day",
"night"
],
"license": "SEE LICENSE IN LICENSE",
"activationEvents": [
"onCommand:themeSwitcher.nextSelectedTheme",
"onCommand:themeSwitcher.previousSelectedTheme",
"onCommand:themeSwitcher.nextTheme",
"onCommand:themeSwitcher.previousTheme"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "themeSwitcher.nextSelectedTheme",
"title": "Next Theme (from separate list in config)"
},
{
"command": "themeSwitcher.previousSelectedTheme",
"title": "Previous Theme (from separate list in config)"
},
{
"command": "themeSwitcher.nextTheme",
"title": "Next Theme"
},
{
"command": "themeSwitcher.previousTheme",
"title": "Previous Theme"
}
],
"keybindings": [
{
"command": "themeSwitcher.previousSelectedTheme",
"key": "ctrl+shift+F9",
"mac": "cmd+shift+F9"
},
{
"command": "themeSwitcher.nextSelectedTheme",
"key": "ctrl+shift+F10",
"mac": "cmd+shift+F10"
},
{
"command": "themeSwitcher.previousTheme",
"key": "ctrl+shift+F11",
"mac": "cmd+shift+F11"
},
{
"command": "themeSwitcher.nextTheme",
"key": "ctrl+shift+F12",
"mac": "cmd+shift+F12"
}
],
"configuration": {
"type": "object",
"title": "Themes to switch in cycle",
"properties": {
"themeSwitcher.themesList": {
"type": "string",
"default": "Visual Studio Dark,Visual Studio Light",
"description": "Selected theme names delimited by comma ('Visual Studio Dark,Visual Studio Light')"
}
}
}
},
"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": {
"@types/node": "^7.0.43",
"typescript": "^2.5.2",
"vscode": "^1.1.30"
},
"dependencies": {
"vsce": "^1.57.1"
}
}