-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.77 KB
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
{
"name": "foreglow",
"version": "1.0.6",
"displayName": "Foreglow Theme Pack",
"description": "Theme pack for Visual Studio Code (includes Foreglow, Afterglow, Alpenglow, and Airglow with optional glow effects)",
"icon": "icon.png",
"publisher": "foreglow",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"main": "./src/extension.js",
"activationEvents": [
"onCommand:foreglow.toggleGlow",
"onCommand:foreglow.toggleStarfield",
"onStartupFinished"
],
"contributes": {
"themes": [
{
"label": "Foreglow",
"path": "./theme/foreglow.json",
"uiTheme": "vs-dark"
},
{
"label": "Afterglow",
"path": "./theme/afterglow.json",
"uiTheme": "vs"
},
{
"label": "Alpenglow",
"path": "./theme/alpenglow.json",
"uiTheme": "vs-dark"
},
{
"label": "Airglow",
"path": "./theme/airglow.json",
"uiTheme": "vs-dark"
}
],
"commands": [
{
"command": "foreglow.toggleGlow",
"title": "Foreglow: Toggle Glow"
},
{
"command": "foreglow.toggleStarfield",
"title": "Foreglow: Toggle Starfield"
},
{
"command": "foreglow.toggleStatusBarText",
"title": "Foreglow: Toggle Status Bar Text"
}
],
"configuration": {
"title": "Foreglow",
"properties": {
"foreglow.brightness": {
"type": "number",
"default": 0.45,
"description": "Set the brightness value for the glow effect. 0.0 is fully transparent and 1.0 is fully bright"
},
"foreglow.disableGlow": {
"type": "boolean",
"default": false,
"description": "Disable the glow effect"
},
"foreglow.disableStarfield": {
"type": "boolean",
"default": false,
"description": "Disable the animated ASCII starfield background"
},
"foreglow.starfieldOpacity": {
"type": "number",
"default": 0.5,
"description": "Set the opacity of the animated ASCII starfield. 0.0 is fully transparent and 1.0 is fully bright"
},
"foreglow.statusBarText": {
"type": "boolean",
"default": true,
"description": "Show Foreglow status bar text when a Foreglow theme is active"
}
}
}
},
"scripts": {
"build": "node ./scripts/build.js",
"lint": "node ./scripts/lint.js",
"package": "vsce package -o ./bin/foreglow.vsix"
},
"devDependencies": {
"js-yaml": "^4.3.1",
"prettier": "^3.0.0",
"tinycolor2": "^1.6.0",
"vsce": "^2.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Foreglow/visual-studio-code"
},
"license": "MIT"
}