vsc-material-theme/package.json

124 lines
3.7 KiB
JSON
Raw Normal View History

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-05-22 09:42:17 +02:00
"version": "0.0.17",
2017-05-10 10:15:13 +02:00
"preview": true,
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": {
"vscode": "^1.12.0"
2017-01-27 22:01:25 +01:00
},
2017-02-04 22:55:05 +01:00
"scripts": {
2017-05-05 23:15:38 +02:00
"build": "npm run build-icons && npm run build-themes",
2017-02-18 19:29:35 +01:00
"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",
2017-04-30 23:53:17 +02:00
"build-icons": "npm run remove-icons && npm run minimize-icons && gulp build:icons && npm run minimize-json",
2017-04-06 16:41:46 +02:00
"build-themes": "gulp build:themes",
2017-02-11 14:12:01 +01:00
"release": "npm run bump && npm run changelog",
2017-05-29 09:30:00 +02:00
"postinstall": "node ./node_modules/vscode/bin/install",
2017-02-11 14:12:01 +01:00
"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
],
2017-05-28 16:50:44 +02:00
"activationEvents": [
"onCommand:material.theme.config"
],
"main": "./extensions/material.theme.config",
2017-01-27 22:01:25 +01:00
"contributes": {
2017-05-28 16:50:44 +02:00
"commands": [
{
"category": "Material theme",
"command": "material.theme.config",
"title": "Material theme settings"
}
],
2017-01-27 22:01:25 +01:00
"themes": [
2017-04-10 14:52:49 +02:00
{
"label": "Material Theme",
"uiTheme": "vs-dark",
"path": "./themes/Material-Theme-Default.json"
},
2017-01-27 22:01:25 +01:00
{
2017-02-04 11:42:25 +01:00
"label": "Material Theme Darker",
2017-01-27 22:01:25 +01:00
"uiTheme": "vs-dark",
2017-04-06 20:06:49 +02:00
"path": "./themes/Material-Theme-Darker.json"
2017-02-09 22:21:00 +01:00
},
2017-04-10 14:52:49 +02:00
{
"label": "Material Theme Palenight",
"uiTheme": "vs-dark",
"path": "./themes/Material-Theme-Palenight.json"
},
2017-02-09 22:21:00 +01:00
{
"label": "Material Theme Lighter",
"uiTheme": "vs",
2017-04-10 14:52:49 +02:00
"path": "./themes/Material-Theme-Lighter.json"
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",
"path": "./themes/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
},
2017-05-10 10:15:13 +02:00
"badges": [
{
"url": "https://camo.githubusercontent.com/d3c6e53aa66426dead24cdedab0e83082103bea6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f657175696e75736f63696f2f7673632d6d6174657269616c2d7468656d652e7376673f7374796c653d666c61742d737175617265",
"href": "https://github.com/equinusocio/vsc-material-theme/issues",
"description": "Open issues"
}
],
2017-02-04 11:42:25 +01:00
"devDependencies": {
2017-05-23 18:41:56 +02:00
"@types/chalk": "^0.4.31",
"@types/gulp": "^4.0.3",
"@types/gulp-if": "0.0.31",
"@types/gulp-util": "^3.0.31",
"@types/mustache": "^0.8.29",
"@types/run-sequence": "0.0.29",
"@types/through2": "^2.0.33",
"@types/yamljs": "^0.2.30",
"@types/yargs": "^6.6.0",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
2017-04-03 19:35:58 +02:00
"babel-root-import": "^4.1.8",
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": "^3.0.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-06 22:38:46 +01:00
"gulp-if": "^2.0.2",
2017-02-04 11:42:25 +01:00
"gulp-stats": "^0.0.4",
2017-04-06 16:41:46 +02:00
"gulp-util": "^3.0.8",
2017-02-06 21:31:52 +01:00
"json-minify": "^1.0.0",
2017-04-05 23:06:45 +02:00
"mustache": "^2.3.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-05-25 11:39:55 +02:00
"typescript": "2.3.3",
2017-05-28 16:50:44 +02:00
"vscode": "^1.1.0",
"yamljs": "^0.2.10",
"yargs": "^7.1.0"
2017-01-27 22:01:25 +01:00
}
2017-02-04 12:31:33 +01:00
}