267 lines
8.5 KiB
JSON
267 lines
8.5 KiB
JSON
{
|
|
"name": "vsc-material-theme",
|
|
"displayName": "Material Theme",
|
|
"description": "The most epic theme now for Visual Studio Code",
|
|
"version": "2.6.2",
|
|
"publisher": "Equinusocio",
|
|
"license": "Apache-2.0",
|
|
"author": "Mattia Astorino [@equinusocio]",
|
|
"icon": "logo.png",
|
|
"galleryBanner": {
|
|
"color": "#11131C",
|
|
"theme": "dark"
|
|
},
|
|
"homepage": "https://equinsuocha.io/projects/material-theme/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/equinusocio/vsc-material-theme.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/equinusocio/vsc-material-theme/issues"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.28.0"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn cleanup && yarn get-remote-icons && yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants && yarn build-icons-variants-json && yarn build-ui",
|
|
"build-icons": "yarn remove-icons && yarn minimize-icons && gulp build:icons && yarn minimize-json",
|
|
"minimize-icons": "mkdir icons && svgo -f src/icons/svgs -o icons/",
|
|
"minimize-json": "json-minify themes/.material-theme-icons.tmp > themes/Material-Theme-Icons.json && yarn remove-icons-tmp",
|
|
"remove-icons": "rimraf icons && rimraf themes/Material-Theme-Icons.json",
|
|
"remove-icons-tmp": "rimraf themes/.material-theme-icons.tmp",
|
|
"get-remote-icons": "gulp build:get-remote-icons",
|
|
"cleanup": "rimraf _tmp-output-remote-icons/ && rimraf ui",
|
|
"build-icons-accents": "gulp build:icons.accents",
|
|
"build-icons-variants": "gulp build:icons.variants",
|
|
"build-icons-variants-json": "gulp build:icons.variants-json",
|
|
"build-themes": "gulp build:themes",
|
|
"build-ui": "yarn copy-ui && yarn build-ui-release-notes",
|
|
"copy-ui": "gulp build:copy-ui",
|
|
"build-ui-release-notes": "browserify extensions/webviews/ui/release-notes/index.js > ui/release-notes.js",
|
|
"build-ui-only": "yarn cleanup && yarn build-ts && yarn build-ui",
|
|
"build-ts": "tsc -p ./tsconfig.json",
|
|
"test": "tslint **.ts",
|
|
"postinstall": "node ./node_modules/vscode/bin/install && opencollective postinstall && tsc -p tsconfig.json"
|
|
},
|
|
"categories": [
|
|
"Themes",
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
"VSCode",
|
|
"Themes"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./extensions/material.theme.config.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "materialTheme.toggleApplyIcons",
|
|
"title": "Enable or disable icons auto-applying",
|
|
"category": "💅 Material Theme"
|
|
},
|
|
{
|
|
"command": "materialTheme.setAccent",
|
|
"title": "Set accent color",
|
|
"category": "🎨 Material Theme"
|
|
},
|
|
{
|
|
"command": "materialTheme.fixIcons",
|
|
"title": "Fix file icons",
|
|
"category": "🛠 Material Theme"
|
|
},
|
|
{
|
|
"command": "materialTheme.showReleaseNotes",
|
|
"title": "Release Notes",
|
|
"category": "📋 Material Theme"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Material Theme",
|
|
"properties": {
|
|
"materialTheme.accent": {
|
|
"type": "string",
|
|
"default": "Blue",
|
|
"enum": [
|
|
"Acid Lime",
|
|
"Blue",
|
|
"Breaking Bad",
|
|
"Bright Teal",
|
|
"Cyan",
|
|
"Graphite",
|
|
"Indigo",
|
|
"Lime",
|
|
"Orange",
|
|
"Pink",
|
|
"Purple",
|
|
"Red",
|
|
"Sky",
|
|
"Tomato",
|
|
"Teal",
|
|
"Yellow"
|
|
],
|
|
"description": "Current accent color selected",
|
|
"scope": "window"
|
|
},
|
|
"materialTheme.autoApplyIcons": {
|
|
"type": "boolean",
|
|
"description": "Enable/disable auto-apply of Material Theme icons with window reload when needed",
|
|
"default": false,
|
|
"scope": "window"
|
|
},
|
|
"materialTheme.showReloadNotification": {
|
|
"type": "boolean",
|
|
"description": "Useful when autoApplyIcons is false and you want to be asked to reload the window when needed",
|
|
"default": true,
|
|
"scope": "window"
|
|
}
|
|
}
|
|
},
|
|
"themes": [
|
|
{
|
|
"label": "Material Theme",
|
|
"path": "./themes/Material-Theme-Default.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme High Contrast",
|
|
"path": "./themes/Material-Theme-Default-High-Contrast.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Darker",
|
|
"path": "./themes/Material-Theme-Darker.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Darker High Contrast",
|
|
"path": "./themes/Material-Theme-Darker-High-Contrast.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Palenight",
|
|
"path": "./themes/Material-Theme-Palenight.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Palenight High Contrast",
|
|
"path": "./themes/Material-Theme-Palenight-High-Contrast.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Ocean",
|
|
"path": "./themes/Material-Theme-Ocean.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Ocean High Contrast",
|
|
"path": "./themes/Material-Theme-Ocean-High-Contrast.json",
|
|
"uiTheme": "vs-dark"
|
|
},
|
|
{
|
|
"label": "Material Theme Lighter",
|
|
"path": "./themes/Material-Theme-Lighter.json",
|
|
"uiTheme": "vs"
|
|
},
|
|
{
|
|
"label": "Material Theme Lighter High Contrast",
|
|
"path": "./themes/Material-Theme-Lighter-High-Contrast.json",
|
|
"uiTheme": "vs"
|
|
}
|
|
],
|
|
"iconThemes": [
|
|
{
|
|
"id": "eq-material-theme-icons",
|
|
"label": "Material Theme Icons",
|
|
"path": "./themes/Material-Theme-Icons.json"
|
|
},
|
|
{
|
|
"id": "eq-material-theme-icons-darker",
|
|
"label": "Material Theme Icons Darker",
|
|
"path": "./themes/Material-Theme-Icons-Darker.json"
|
|
},
|
|
{
|
|
"id": "eq-material-theme-icons-palenight",
|
|
"label": "Material Theme Icons Palenight",
|
|
"path": "./themes/Material-Theme-Icons-Palenight.json"
|
|
},
|
|
{
|
|
"id": "eq-material-theme-icons-ocean",
|
|
"label": "Material Theme Icons Ocean",
|
|
"path": "./themes/Material-Theme-Icons-Ocean.json"
|
|
},
|
|
{
|
|
"id": "eq-material-theme-icons-light",
|
|
"label": "Material Theme Icons Light",
|
|
"path": "./themes/Material-Theme-Icons-Light.json"
|
|
}
|
|
]
|
|
},
|
|
"badges": [
|
|
{
|
|
"url": "https://camo.githubusercontent.com/d3c6e53aa66426dead24cdedab0e83082103bea6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f657175696e75736f63696f2f7673632d6d6174657269616c2d7468656d652e7376673f7374796c653d666c61742d737175617265",
|
|
"href": "https://github.com/equinusocio/vsc-material-theme/issues",
|
|
"description": "Open issues"
|
|
},
|
|
{
|
|
"url": "https://img.shields.io/badge/Support%20this%20project-%F0%9F%92%96%EF%B8%8F-green.svg?style=flat-square",
|
|
"href": "https://opencollective.com/vsc-material-theme",
|
|
"description": "Support us!"
|
|
}
|
|
],
|
|
"devDependencies": {
|
|
"@types/chalk": "2.2.0",
|
|
"@types/execa": "0.9.0",
|
|
"@types/gulp": "4.0.5",
|
|
"@types/gulp-if": "0.0.33",
|
|
"@types/gulp-util": "3.0.34",
|
|
"@types/mustache": "0.8.31",
|
|
"@types/ncp": "2.0.1",
|
|
"@types/rimraf": "2.0.2",
|
|
"@types/run-sequence": "0.0.30",
|
|
"@types/through2": "2.0.33",
|
|
"@types/yamljs": "0.2.30",
|
|
"@types/yargs": "11.0.0",
|
|
"babel-core": "6.26.3",
|
|
"babel-preset-env": "1.7.0",
|
|
"babel-preset-es2015": "6.24.1",
|
|
"babel-root-import": "4.1.8",
|
|
"browserify": "16.2.2",
|
|
"cpx": "1.5.0",
|
|
"execa": "0.10.0",
|
|
"gulp": "3.9.1",
|
|
"gulp-bump": "3.1.0",
|
|
"gulp-conventional-changelog": "1.1.11",
|
|
"gulp-if": "2.0.2",
|
|
"gulp-stats": "0.0.4",
|
|
"gulp-util": "3.0.8",
|
|
"hoek": "5.0.3",
|
|
"json-minify": "1.0.0",
|
|
"mustache": "2.3.0",
|
|
"ncp": "2.0.0",
|
|
"run-sequence": "2.2.1",
|
|
"svgo": "1.0.5",
|
|
"tslint": "5.10.0",
|
|
"tslint-xo": "0.8.0",
|
|
"typescript": "2.9.2",
|
|
"vscode": "1.1.18",
|
|
"yamljs": "0.3.0",
|
|
"yargs": "11.0.0"
|
|
},
|
|
"__metadata": {
|
|
"id": "dffaf5a1-2219-434b-9d87-cb586fd59260",
|
|
"publisherDisplayName": "Mattia Astorino",
|
|
"publisherId": "e41388a1-a892-4c1e-940b-1e7c1bf43c97"
|
|
},
|
|
"dependencies": {
|
|
"opencollective": "1.0.3"
|
|
},
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/vsc-material-theme",
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
}
|
|
}
|