mirror of
https://github.com/gosticks/vscode-vibrancy-continued.git
synced 2025-10-16 12:05:38 +00:00
144 lines
4.0 KiB
JSON
144 lines
4.0 KiB
JSON
{
|
|
"name": "vscode-vibrancy-continued",
|
|
"displayName": "Vibrancy Continued",
|
|
"description": "Vibrancy Effect for Visual Studio Code",
|
|
"version": "1.1.16",
|
|
"publisher": "illixion",
|
|
"author": {
|
|
"email": "illixion@illixion.com",
|
|
"name": "illixion",
|
|
"url": "https://illixion.com"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.57.0"
|
|
},
|
|
"categories": [
|
|
"Other",
|
|
"Themes"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/illixion/vscode-vibrancy-continued"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/illixion/vscode-vibrancy-continued/issues"
|
|
},
|
|
"preview": false,
|
|
"icon": "images/logo.png",
|
|
"extensionKind": [
|
|
"ui"
|
|
],
|
|
"galleryBanner": {
|
|
"color": "#EEEEEE"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./extension/index.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.installVibrancy",
|
|
"title": "%extension.installVibrancy.title%"
|
|
},
|
|
{
|
|
"command": "extension.uninstallVibrancy",
|
|
"title": "%extension.uninstallVibrancy.title%"
|
|
},
|
|
{
|
|
"command": "extension.updateVibrancy",
|
|
"title": "%extension.updateVibrancy.title%"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Vibrancy Effect",
|
|
"properties": {
|
|
"vscode_vibrancy.type": {
|
|
"description": "%configuration.type.description%",
|
|
"type": "string",
|
|
"default": "auto",
|
|
"enum": [
|
|
"auto",
|
|
"acrylic",
|
|
"appearance-based",
|
|
"light",
|
|
"dark",
|
|
"titlebar",
|
|
"selection",
|
|
"menu",
|
|
"popover",
|
|
"sidebar",
|
|
"medium-light",
|
|
"ultra-dark"
|
|
],
|
|
"enumDescriptions": [
|
|
"%configuration.type.auto.description%",
|
|
"%configuration.type.acrylic.description%",
|
|
"%configuration.type.appearance-based.description%",
|
|
"%configuration.type.light.description%",
|
|
"%configuration.type.dark.description%",
|
|
"%configuration.type.titlebar.description%",
|
|
"%configuration.type.selection.description%",
|
|
"%configuration.type.menu.description%",
|
|
"%configuration.type.popover.description%",
|
|
"%configuration.type.sidebar.description%",
|
|
"%configuration.type.medium-light.description%",
|
|
"%configuration.type.ultra-dark.description%"
|
|
]
|
|
},
|
|
"vscode_vibrancy.opacity": {
|
|
"description": "%configuration.opacity.description%",
|
|
"type": "number",
|
|
"default": "-1",
|
|
"minimum": "-1",
|
|
"maximum": "1"
|
|
},
|
|
"vscode_vibrancy.theme": {
|
|
"description": "%configuration.theme.description%",
|
|
"type": "string",
|
|
"default": "Default Dark",
|
|
"enum": [
|
|
"Default Dark",
|
|
"Dark (Only Subbar)",
|
|
"Default Light",
|
|
"Light (Only Subbar)",
|
|
"Tokyo Night Storm",
|
|
"Tokyo Night Storm (Outer)",
|
|
"Noir et blanc",
|
|
"Dark (Exclude Tab Line)",
|
|
"Solarized Dark+"
|
|
]
|
|
},
|
|
"vscode_vibrancy.imports": {
|
|
"description": "%configuration.imports.description%",
|
|
"type": "array",
|
|
"default": [
|
|
"/path/to/file"
|
|
]
|
|
},
|
|
"vscode_vibrancy.refreshInterval": {
|
|
"description": "%configuration.refreshInterval.description%",
|
|
"type": "number",
|
|
"default": "10"
|
|
},
|
|
"vscode_vibrancy.preventFlash": {
|
|
"description": "%configuration.preventFlash.description%",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build-win10": "node-gyp rebuild"
|
|
},
|
|
"dependencies": {
|
|
"fs-extra": "^10.1.0",
|
|
"mz": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"node-addon-api": "^5.0.0",
|
|
"node-gyp": "^9.1.0"
|
|
}
|
|
}
|