@str-public/theme-switcher 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +35 -0
- package/str-theme-switcher-1.0.0.vsix +0 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@str-public/theme-switcher",
|
|
3
|
+
"displayName": "Custom Theme Switcher",
|
|
4
|
+
"description": "Quickly switch between Quiet Light and Monokai Dimmed from the status bar.",
|
|
5
|
+
"version": "1.1.0",
|
|
6
|
+
"publisher": "Stronghold Systems",
|
|
7
|
+
"engines": {
|
|
8
|
+
"vscode": "^1.80.0"
|
|
9
|
+
},
|
|
10
|
+
"categories": [
|
|
11
|
+
"Other"
|
|
12
|
+
],
|
|
13
|
+
"activationEvents": [
|
|
14
|
+
"onStartupFinished"
|
|
15
|
+
],
|
|
16
|
+
"main": "./extension.js",
|
|
17
|
+
"contributes": {
|
|
18
|
+
"commands": [
|
|
19
|
+
{
|
|
20
|
+
"command": "themeSwitcher.setQuietLight",
|
|
21
|
+
"title": "Set Theme: Quiet Light"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"command": "themeSwitcher.setMonokaiDimmed",
|
|
25
|
+
"title": "Set Theme: Monokai Dimmed"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"str-theme-switcher-1.0.0.vsix"
|
|
31
|
+
],
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
Binary file
|