vsc-material-theme/package.json

220 lines
6.3 KiB
JSON
Raw Permalink 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",
2024-06-12 10:11:39 +02:00
"version": "34.4.0",
2018-04-20 20:07:36 +02:00
"publisher": "Equinusocio",
"license": "Apache-2.0",
"author": "Mattia Astorino [@equinusocio]",
"icon": "logo.png",
2019-12-26 11:34:54 +01:00
"funding": {
"type": "opencollective",
2020-09-17 11:40:23 +02:00
"url": "https://opencollective.com/material-theme"
2019-12-26 11:34:54 +01:00
},
2018-04-20 20:07:36 +02:00
"galleryBanner": {
2018-04-22 23:01:00 +02:00
"color": "#11131C",
2018-04-20 20:07:36 +02:00
"theme": "dark"
},
2023-11-30 14:22:38 +01:00
"homepage": "https://material-theme.dev",
2018-04-20 20:07:36 +02:00
"repository": {
"type": "git",
2019-08-21 12:37:12 +02:00
"url": "https://github.com/material-theme/vsc-material-theme.git"
2018-04-20 20:07:36 +02:00
},
"bugs": {
2019-08-21 12:37:12 +02:00
"url": "https://github.com/material-theme/vsc-material-theme/issues"
2018-04-20 20:07:36 +02:00
},
2020-01-10 23:47:28 +01:00
"extensionPack": [
2020-01-11 00:17:59 +01:00
"equinusocio.vsc-material-theme-icons"
2020-01-11 00:10:01 +01:00
],
2018-04-20 20:07:36 +02:00
"engines": {
2020-12-14 18:20:56 +01:00
"node": ">=12",
"vscode": "^1.51.0"
2018-04-20 20:07:36 +02:00
},
"scripts": {
2022-12-01 18:20:24 +01:00
"build": "run-s cleanup build:ts build:generate-themes build:ui",
"cleanup": "rimraf build && rimraf dist",
"lint": "eslint .",
"build:ui": "node dist/scripts/ui/index.js",
"build:generate-themes": "node dist/scripts/generator/index.js",
"build:ts": "tsc -p ./tsconfig.json && ncp dist/src/ build && ncp material-theme.config.json build",
2020-09-05 09:35:15 +02:00
"postinstall": "node ./node_modules/vscode/bin/install && tsc -p tsconfig.json",
2022-12-01 17:51:03 +01:00
"release": "git pull && standard-version --release-as minor && git push --follow-tags",
"release:patch": "git pull && standard-version --release-as patch && git push --follow-tags",
"release:major": "git pull && standard-version -release-as major && git push --follow-tags"
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": [
2022-03-03 09:38:07 +01:00
"onStartupFinished"
2018-04-20 20:07:36 +02:00
],
2020-01-06 18:59:38 +01:00
"extensionKind": [
2020-02-15 13:27:45 +01:00
"ui",
"workspace"
2020-01-06 18:59:38 +01:00
],
"main": "./build/material.theme.config",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
2018-04-20 20:07:36 +02:00
"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",
2023-11-30 14:22:38 +01:00
"category": "Material Theme"
2018-04-30 10:20:33 +02:00
},
{
"command": "materialTheme.showReleaseNotes",
"title": "Release Notes",
2023-11-30 14:22:38 +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"
2018-04-20 20:07:36 +02:00
}
}
},
"themes": [
{
2018-04-20 20:07:36 +02:00
"label": "Material Theme",
"path": "./build/themes/Material-Theme-Default.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs-dark"
},
{
"label": "Material Theme High Contrast",
"path": "./build/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": "./build/themes/Material-Theme-Darker.json",
2018-04-20 21:29:02 +02:00
"uiTheme": "vs-dark"
2018-04-20 22:18:31 +02:00
},
{
"label": "Material Theme Darker High Contrast",
"path": "./build/themes/Material-Theme-Darker-High-Contrast.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Palenight",
"path": "./build/themes/Material-Theme-Palenight.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Palenight High Contrast",
"path": "./build/themes/Material-Theme-Palenight-High-Contrast.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs-dark"
},
2018-04-22 11:27:31 +02:00
{
"label": "Material Theme Ocean",
"path": "./build/themes/Material-Theme-Ocean.json",
2018-04-22 11:27:31 +02:00
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Ocean High Contrast",
"path": "./build/themes/Material-Theme-Ocean-High-Contrast.json",
"uiTheme": "vs-dark"
2023-08-26 13:48:42 +02:00
},
{
2023-08-27 11:04:54 +02:00
"label": "Material Theme Deepforest",
"path": "./build/themes/Material-Theme-Deepforest.json",
2023-08-26 13:48:42 +02:00
"uiTheme": "vs-dark"
},
{
2023-08-31 17:50:09 +02:00
"label": "Material Theme DeepForest High Contrast",
"path": "./build/themes/Material-Theme-Deepforest-High-Contrast.json",
2023-08-26 13:48:42 +02:00
"uiTheme": "vs-dark"
},
2018-04-20 22:18:31 +02:00
{
"label": "Material Theme Lighter",
"path": "./build/themes/Material-Theme-Lighter.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs"
},
{
"label": "Material Theme Lighter High Contrast",
"path": "./build/themes/Material-Theme-Lighter-High-Contrast.json",
2018-04-20 22:18:31 +02:00
"uiTheme": "vs"
2018-04-20 20:07:36 +02:00
}
]
},
2019-03-17 19:48:45 +01:00
"extensionDependency": [
"Equinusocio.vsc-material-theme-icons"
],
"badges": [
{
2023-11-30 14:22:38 +01:00
"url": "https://img.shields.io/github/issues/material-theme/vsc-material-theme",
"href": "https://github.com/material-theme/vsc-material-theme/issues",
2018-04-20 20:07:36 +02:00
"description": "Open issues"
2018-11-29 21:14:46 +01:00
},
{
2023-11-30 14:22:38 +01:00
"url": "https://img.shields.io/badge/%E2%9D%A4%EF%B8%8F-s?style=for-the-badge&logo=open-collective&label=Support%20us&labelColor=%233b79d6&color=%233b79d6",
2020-09-17 11:40:23 +02:00
"href": "https://opencollective.com/material-theme",
2018-11-29 21:14:46 +01:00
"description": "Support us!"
2018-04-20 20:07:36 +02:00
}
],
"devDependencies": {
2022-06-11 19:19:51 +02:00
"@moxer/vscode-theme-generator": "1.21.0",
"@types/browserify": "12.0.36",
2020-06-25 10:34:19 +02:00
"@types/fs-extra": "8.1.0",
2022-12-01 19:06:44 +01:00
"@types/rimraf": "3.0.2",
2020-06-25 10:34:19 +02:00
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"browserify": "16.5.1",
"eslint": "7.2.0",
"eslint-config-xo-space": "0.25.0",
"eslint-config-xo-typescript": "0.31.0",
"fs-extra": "9.0.1",
"ncp": "2.0.0",
2022-12-01 18:20:24 +01:00
"npm-run-all": "4.1.5",
2022-12-01 19:06:44 +01:00
"standard-version": "9.5.0",
"typescript": "4.1.3",
2020-06-25 10:34:19 +02:00
"vscode": "1.1.37"
2018-04-20 20:07:36 +02:00
},
"__metadata": {
"id": "dffaf5a1-2219-434b-9d87-cb586fd59260",
"publisherDisplayName": "Mattia Astorino",
"publisherId": "e41388a1-a892-4c1e-940b-1e7c1bf43c97"
},
"dependencies": {
"@sanity/client": "2.1.0",
2018-04-20 20:07:36 +02:00
"opencollective": "1.0.3"
},
"collective": {
"type": "opencollective",
2020-09-17 11:40:23 +02:00
"url": "https://opencollective.com/material-theme",
2018-04-20 20:07:36 +02:00
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}