93 lines
2.7 KiB
JSON
93 lines
2.7 KiB
JSON
{
|
|
"name": "vsc-material-theme",
|
|
"displayName": "Material Theme",
|
|
"description": "The most epic theme now for Visual Studio Code",
|
|
"version": "0.0.9",
|
|
"publisher": "Equinusocio",
|
|
"license": "Apache-2.0",
|
|
"icon": "logo.png",
|
|
"galleryBanner": {
|
|
"color": "#263238",
|
|
"theme": "dark"
|
|
},
|
|
"homepage": "https://github.com/equinusocio/vsc-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.11.0"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run icons && npm run build-themes",
|
|
"minimize-icons": "svgo -f src/icons/svgs -o icons",
|
|
"minimize-json": "json-minify themes/.material-theme-icons.tmp > themes/Material-Theme-Icons.json && npm run remove-icons-tmp",
|
|
"remove-icons": "rimraf icons && rimraf themes/Material-Theme-Icons.json",
|
|
"remove-icons-tmp": "rimraf themes/.material-theme-icons.tmp",
|
|
"build-icons": "npm run remove-icons && npm run minimize-icons && gulp build:icons && npm run minimize-json",
|
|
"build-themes": "gulp build:themes",
|
|
"release": "npm run bump && npm run changelog",
|
|
"changelog": "gulp changelog",
|
|
"bump": "gulp bump"
|
|
},
|
|
"categories": [
|
|
"Themes",
|
|
"Other"
|
|
],
|
|
"contributes": {
|
|
"themes": [
|
|
{
|
|
"label": "Material Theme",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/Material-Theme-Default.json"
|
|
},
|
|
{
|
|
"label": "Material Theme Darker",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/Material-Theme-Darker.json"
|
|
},
|
|
{
|
|
"label": "Material Theme Palenight",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/Material-Theme-Palenight.json"
|
|
},
|
|
{
|
|
"label": "Material Theme Lighter",
|
|
"uiTheme": "vs",
|
|
"path": "./themes/Material-Theme-Lighter.json"
|
|
}
|
|
],
|
|
"iconThemes": [
|
|
{
|
|
"id": "material-theme-icons",
|
|
"label": "Material Theme Icons",
|
|
"path": "./themes/Material-Theme-Icons.json"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.24.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-root-import": "^4.1.8",
|
|
"cpx": "^1.5.0",
|
|
"eslint": "^3.19.0",
|
|
"eslint-plugin-standard": "^3.0.1",
|
|
"gulp": "^3.9.1",
|
|
"gulp-bump": "^2.7.0",
|
|
"gulp-conventional-changelog": "^1.1.3",
|
|
"gulp-if": "^2.0.2",
|
|
"gulp-stats": "^0.0.4",
|
|
"gulp-util": "^3.0.8",
|
|
"gulp-watch": "^4.3.8",
|
|
"json-minify": "^1.0.0",
|
|
"mustache": "^2.3.0",
|
|
"rimraf": "^2.6.1",
|
|
"run-sequence": "^1.2.2",
|
|
"svgo": "^0.7.1",
|
|
"yamljs": "^0.2.10",
|
|
"yargs": "^7.1.0"
|
|
}
|
|
}
|