vsc-material-theme/package.json

263 lines
8.3 KiB
JSON
Raw Normal View History

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-11-25 23:08:56 +01:00
"version": "2.6.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": {
2018-08-18 12:31:19 +02:00
"vscode": "^1.25.0"
2018-04-20 20:07:36 +02:00
},
"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/",
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",
"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",
"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",
2018-04-30 10:17:49 +02:00
"build-ts": "tsc -p ./tsconfig.json",
"test": "tslint **.ts",
"postinstall": "node ./node_modules/vscode/bin/install && opencollective postinstall && tsc -p tsconfig.json"
2018-04-20 20:07:36 +02:00
},
"categories": [
"Themes",
"Other"
],
2018-07-25 22:30:13 +02:00
"keywords": [
"VSCode",
"Themes"
],
2018-04-20 20:07:36 +02:00
"activationEvents": [
"*"
2018-04-20 20:07:36 +02:00
],
"main": "./extensions/material.theme.config.js",
"contributes": {
"commands": [
{
"command": "materialTheme.toggleApplyIcons",
"title": "Enable or disable icons auto-applying",
2018-11-25 16:44:54 +01:00
"category": "💅 Material Theme"
},
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-11-25 16:44:54 +01:00
"category": "🛠 Material Theme"
2018-04-30 10:20:33 +02:00
},
{
"command": "materialTheme.showReleaseNotes",
"title": "Release Notes",
2018-11-25 16:44:54 +01:00
"category": "📋 Material Theme"
2018-04-30 10:20:33 +02:00
}
2018-04-20 20:07:36 +02:00
],
"configuration": {
"type": "object",
"title": "Material Theme",
2018-04-20 20:07:36 +02:00
"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"
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"
},
{
"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"
},
{
"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"
2018-04-20 20:07:36 +02:00
}
]
},
"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/execa": "0.9.0",
2018-04-20 20:07:36 +02:00
"@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",
2018-04-20 20:07:36 +02:00
"@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",
2018-04-20 20:07:36 +02:00
"babel-preset-es2015": "6.24.1",
"babel-root-import": "4.1.8",
"browserify": "16.2.2",
2018-04-20 20:07:36 +02:00
"cpx": "1.5.0",
"execa": "0.10.0",
2018-04-20 20:07:36 +02:00
"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",
"ncp": "2.0.0",
2018-04-20 20:07:36 +02:00
"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",
2018-04-20 20:07:36 +02:00
"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"
}
}