2017-01-27 22:01:25 +01:00
|
|
|
{
|
2017-02-04 11:42:25 +01:00
|
|
|
"name": "vsc-material-theme",
|
2017-01-27 22:01:25 +01:00
|
|
|
"displayName": "Material Theme",
|
|
|
|
"description": "The most epic theme now for Visual Studio Code",
|
2017-02-26 18:13:26 +01:00
|
|
|
"version": "0.0.7",
|
2017-01-27 22:01:25 +01:00
|
|
|
"publisher": "Equinusocio",
|
2017-02-04 22:55:05 +01:00
|
|
|
"license": "Apache-2.0",
|
2017-02-06 22:49:13 +01:00
|
|
|
"icon": "logo.png",
|
2017-02-06 21:31:52 +01:00
|
|
|
"galleryBanner": {
|
2017-02-11 15:39:27 +01:00
|
|
|
"color": "#263238",
|
2017-02-06 21:31:52 +01:00
|
|
|
"theme": "dark"
|
|
|
|
},
|
2017-02-06 22:42:51 +01:00
|
|
|
"homepage": "https://github.com/equinusocio/vsc-material-theme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/equinusocio/vsc-material-theme.git"
|
|
|
|
},
|
2017-02-04 11:42:25 +01:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/equinusocio/vsc-material-theme/issues"
|
|
|
|
},
|
2017-01-27 22:01:25 +01:00
|
|
|
"engines": {
|
2017-02-04 12:31:33 +01:00
|
|
|
"vscode": "^1.5.0"
|
2017-01-27 22:01:25 +01:00
|
|
|
},
|
2017-02-04 22:55:05 +01:00
|
|
|
"scripts": {
|
2017-02-18 19:29:35 +01:00
|
|
|
"start": "npm run remove-icons && npm run minimize-icons && npm run buildicons && npm run minimize-json",
|
|
|
|
"minimize-icons": "svgo -f src/icons/svgs -o icons",
|
|
|
|
"minimize-json": "json-minify .material-theme-icons.tmp > material-theme-icons.json && npm run remove-icons-tmp",
|
|
|
|
"remove-icons": "rimraf icons && rimraf material-theme-icons.json",
|
|
|
|
"remove-icons-tmp": "rimraf .material-theme-icons.tmp",
|
|
|
|
"buildicons": "gulp build:icons",
|
2017-02-11 14:12:01 +01:00
|
|
|
"release": "npm run bump && npm run changelog",
|
|
|
|
"changelog": "gulp changelog",
|
|
|
|
"bump": "gulp bump"
|
2017-02-04 22:55:05 +01:00
|
|
|
},
|
2017-01-27 22:01:25 +01:00
|
|
|
"categories": [
|
2017-02-04 22:57:23 +01:00
|
|
|
"Themes",
|
|
|
|
"Other"
|
2017-01-27 22:01:25 +01:00
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"themes": [
|
|
|
|
{
|
2017-02-04 11:42:25 +01:00
|
|
|
"label": "Material Theme Darker",
|
2017-01-27 22:01:25 +01:00
|
|
|
"uiTheme": "vs-dark",
|
|
|
|
"path": "./themes/Material-Theme-Darker.tmTheme"
|
2017-02-09 22:21:00 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Material Theme Lighter",
|
|
|
|
"uiTheme": "vs",
|
|
|
|
"path": "./themes/Material-Theme-Lighter.tmTheme"
|
2017-01-27 22:01:25 +01:00
|
|
|
}
|
2017-02-06 21:31:52 +01:00
|
|
|
],
|
|
|
|
"iconThemes": [
|
|
|
|
{
|
|
|
|
"id": "material-theme-icons",
|
|
|
|
"label": "Material Theme Icons",
|
2017-02-18 19:29:35 +01:00
|
|
|
"path": "./material-theme-icons.json"
|
2017-02-06 21:31:52 +01:00
|
|
|
}
|
2017-01-27 22:01:25 +01:00
|
|
|
]
|
2017-02-04 11:42:25 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-04-03 19:35:58 +02:00
|
|
|
"babel-core": "^6.24.0",
|
|
|
|
"babel-preset-es2015": "^6.24.0",
|
|
|
|
"babel-root-import": "^4.1.8",
|
2017-02-04 11:42:25 +01:00
|
|
|
"colors": "^1.1.2",
|
2017-02-06 22:38:46 +01:00
|
|
|
"cpx": "^1.5.0",
|
2017-04-03 19:35:58 +02:00
|
|
|
"eslint": "^3.19.0",
|
|
|
|
"eslint-plugin-standard": "^2.1.1",
|
2017-02-04 11:42:25 +01:00
|
|
|
"gulp": "^3.9.1",
|
2017-04-03 19:35:58 +02:00
|
|
|
"gulp-bump": "^2.7.0",
|
|
|
|
"gulp-conventional-changelog": "^1.1.3",
|
2017-02-18 19:29:35 +01:00
|
|
|
"gulp-data": "^1.2.1",
|
|
|
|
"gulp-filelist": "^1.0.0",
|
2017-02-06 22:38:46 +01:00
|
|
|
"gulp-if": "^2.0.2",
|
2017-02-18 19:29:35 +01:00
|
|
|
"gulp-include": "^2.3.1",
|
|
|
|
"gulp-rename": "^1.2.2",
|
2017-02-04 11:42:25 +01:00
|
|
|
"gulp-stats": "^0.0.4",
|
2017-02-18 19:29:35 +01:00
|
|
|
"gulp-template": "^4.0.0",
|
2017-02-04 11:42:25 +01:00
|
|
|
"gulp-watch": "^4.3.8",
|
2017-02-06 21:31:52 +01:00
|
|
|
"json-minify": "^1.0.0",
|
2017-04-03 19:35:58 +02:00
|
|
|
"rimraf": "^2.6.1",
|
2017-02-06 22:38:46 +01:00
|
|
|
"run-sequence": "^1.2.2",
|
|
|
|
"svgo": "^0.7.1",
|
2017-04-03 19:35:58 +02:00
|
|
|
"yargs": "^7.0.2"
|
2017-01-27 22:01:25 +01:00
|
|
|
}
|
2017-02-04 12:31:33 +01:00
|
|
|
}
|