2018-04-20 20:07:36 +02:00
|
|
|
{
|
|
|
|
"name": "vsc-material-theme",
|
|
|
|
"displayName": "Material Theme",
|
|
|
|
"description": "The most epic theme now for Visual Studio Code",
|
2018-04-23 23:47:19 +02:00
|
|
|
"version": "2.0.1",
|
2018-04-20 20:07:36 +02:00
|
|
|
"publisher": "Equinusocio",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"author": "Mattia Astorino [@equinusocio]",
|
|
|
|
"icon": "logo.png",
|
|
|
|
"galleryBanner": {
|
2018-04-22 23:01:00 +02:00
|
|
|
"color": "#11131C",
|
2018-04-20 20:07:36 +02:00
|
|
|
"theme": "dark"
|
|
|
|
},
|
2018-04-30 23:55:35 +02:00
|
|
|
"homepage": "https://equinsuocha.io/projects/material-theme/",
|
2018-04-20 20:07:36 +02:00
|
|
|
"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.19.0"
|
|
|
|
},
|
|
|
|
"standard-version": {
|
|
|
|
"scripts": {
|
|
|
|
"postchangelog": "yarn gulp changelog-title"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants",
|
2018-04-20 23:09:08 +02:00
|
|
|
"minimize-icons": "mkdir icons && svgo -f src/icons/svgs -o icons/",
|
2018-04-20 20:07:36 +02:00
|
|
|
"minimize-json": "json-minify themes/.material-theme-icons.tmp > themes/Material-Theme-Icons.json && yarn remove-icons-tmp",
|
2018-04-20 23:09:08 +02:00
|
|
|
"remove-icons": "rimraf icons && rimraf themes/Material-Theme-Icons.json",
|
2018-04-20 20:07:36 +02:00
|
|
|
"remove-icons-tmp": "rimraf themes/.material-theme-icons.tmp",
|
|
|
|
"build-icons": "yarn remove-icons && yarn minimize-icons && yarn gulp build:icons && yarn minimize-json",
|
|
|
|
"build-icons-accents": "yarn gulp build:icons.accents",
|
|
|
|
"build-icons-variants": "yarn gulp build:icons.variants",
|
|
|
|
"build-themes": "yarn gulp build:themes",
|
2018-04-30 10:17:49 +02:00
|
|
|
"build-ts": "tsc -p ./tsconfig.json",
|
2018-04-20 20:07:36 +02:00
|
|
|
"release": "standard-version",
|
2018-04-21 13:57:08 +02:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install && opencollective postinstall && tsc -p tsconfig.json"
|
2018-04-20 20:07:36 +02:00
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Themes",
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
2018-04-30 09:55:47 +02:00
|
|
|
"onCommand:materialTheme.setAccent",
|
|
|
|
"onCommand:materialTheme.fixIcons",
|
|
|
|
"onCommand:materialTheme.showChangelog"
|
2018-04-20 20:07:36 +02:00
|
|
|
],
|
|
|
|
"main": "./extensions/material.theme.config.js",
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
2018-04-30 10:20:33 +02:00
|
|
|
{
|
|
|
|
"command": "materialTheme.setAccent",
|
2018-04-30 23:55:35 +02:00
|
|
|
"title": "Set accent color",
|
2018-04-30 10:20:33 +02:00
|
|
|
"category": "🎨 Material Theme"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "materialTheme.fixIcons",
|
2018-04-30 11:42:05 +02:00
|
|
|
"title": "Fix file icons",
|
2018-04-30 10:20:33 +02:00
|
|
|
"category": "🎨 Material Theme"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "materialTheme.showChangelog",
|
|
|
|
"title": "Show changelog",
|
|
|
|
"category": "🎨 Material Theme"
|
|
|
|
}
|
2018-04-20 20:07:36 +02:00
|
|
|
],
|
|
|
|
"configuration": {
|
2018-04-30 09:55:47 +02:00
|
|
|
"type": "object",
|
|
|
|
"title": "Material Theme configuration",
|
2018-04-20 20:07:36 +02:00
|
|
|
"properties": {
|
2018-04-30 09:55:47 +02:00
|
|
|
"materialTheme.accent": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Current accent color selected"
|
|
|
|
},
|
|
|
|
"materialTheme.accentPrevious": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Previous accent color selected"
|
2018-04-20 20:07:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"themes": [
|
|
|
|
{
|
|
|
|
"label": "Material Theme",
|
2018-04-20 22:18:31 +02:00
|
|
|
"path": "./themes/Material-Theme-Default.json",
|
|
|
|
"uiTheme": "vs-dark"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Material Theme High Contrast",
|
|
|
|
"path": "./themes/Material-Theme-Default-High-Contrast.json",
|
2018-04-20 20:07:36 +02:00
|
|
|
"uiTheme": "vs-dark"
|
2018-04-20 21:29:02 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Material Theme Darker",
|
|
|
|
"path": "./themes/Material-Theme-Darker.json",
|
|
|
|
"uiTheme": "vs-dark"
|
2018-04-20 22:18:31 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"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"
|
|
|
|
},
|
2018-04-22 11:27:31 +02:00
|
|
|
{
|
|
|
|
"label": "Material Theme Ocean",
|
|
|
|
"path": "./themes/Material-Theme-Ocean.json",
|
|
|
|
"uiTheme": "vs-dark"
|
|
|
|
},
|
2018-04-22 22:56:26 +02:00
|
|
|
{
|
|
|
|
"label": "Material Theme Ocean High Contrast",
|
|
|
|
"path": "./themes/Material-Theme-Ocean-High-Contrast.json",
|
|
|
|
"uiTheme": "vs-dark"
|
|
|
|
},
|
2018-04-20 22:18:31 +02:00
|
|
|
{
|
|
|
|
"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"
|
2018-04-20 20:07:36 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"iconThemes": [
|
|
|
|
{
|
|
|
|
"id": "eq-material-theme-icons",
|
|
|
|
"label": "Material Theme Icons",
|
|
|
|
"path": "./themes/Material-Theme-Icons.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"badges": [
|
|
|
|
{
|
|
|
|
"url": "https://camo.githubusercontent.com/d3c6e53aa66426dead24cdedab0e83082103bea6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f657175696e75736f63696f2f7673632d6d6174657269616c2d7468656d652e7376673f7374796c653d666c61742d737175617265",
|
|
|
|
"href": "https://github.com/equinusocio/vsc-material-theme/issues",
|
|
|
|
"description": "Open issues"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/chalk": "2.2.0",
|
|
|
|
"@types/gulp": "4.0.5",
|
|
|
|
"@types/gulp-if": "0.0.33",
|
|
|
|
"@types/gulp-util": "3.0.34",
|
|
|
|
"@types/mustache": "0.8.30",
|
|
|
|
"@types/run-sequence": "0.0.30",
|
|
|
|
"@types/through2": "2.0.33",
|
|
|
|
"@types/yamljs": "0.2.30",
|
|
|
|
"@types/yargs": "10.0.1",
|
|
|
|
"babel-core": "6.26.0",
|
|
|
|
"babel-preset-es2015": "6.24.1",
|
|
|
|
"babel-root-import": "4.1.8",
|
|
|
|
"cpx": "1.5.0",
|
|
|
|
"eslint": "4.17.0",
|
|
|
|
"eslint-plugin-standard": "3.0.1",
|
|
|
|
"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",
|
2018-04-30 10:20:33 +02:00
|
|
|
"hoek": "5.0.3",
|
2018-04-20 20:07:36 +02:00
|
|
|
"json-minify": "1.0.0",
|
|
|
|
"mustache": "2.3.0",
|
|
|
|
"rimraf": "2.6.2",
|
|
|
|
"run-sequence": "2.2.1",
|
|
|
|
"standard-version": "4.3.0",
|
|
|
|
"svgo": "1.0.4",
|
|
|
|
"typescript": "2.7.1",
|
|
|
|
"vscode": "1.1.10",
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|