vsc-material-but-i-wont-sue.../package.json
2025-02-26 01:08:30 -08:00

182 lines
4.9 KiB
JSON

{
"name": "vsc-material-theme-but-i-wont-sue-you",
"displayName": "Material Theme (But I Won't Sue You)",
"description": "A Apache-2 licensed fork of Material Theme with no threats of legal action",
"version": "35.0.2",
"publisher": "t3dotgg",
"license": "Apache-2.0",
"author": "Theo",
"icon": "logo.png",
"galleryBanner": {
"color": "#11131C",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/t3dotgg/vsc-material-but-i-wont-sue-you.git"
},
"bugs": {
"url": "https://github.com/t3dotgg/vsc-material-but-i-wont-sue-you/issues"
},
"engines": {
"node": ">=12",
"vscode": "^1.51.0"
},
"scripts": {
"build": "run-s cleanup build:ts build:generate-themes",
"cleanup": "rimraf build && rimraf dist",
"lint": "eslint .",
"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",
"postinstall": "node ./node_modules/vscode/bin/install && tsc -p tsconfig.json"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes"
],
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"ui",
"workspace"
],
"main": "./build/material.theme.config",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "materialTheme.setAccent",
"title": "Set accent color",
"category": "Material Theme"
}
],
"configuration": {
"type": "object",
"title": "Material Theme",
"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"
}
}
},
"themes": [
{
"label": "Material Theme",
"path": "./build/themes/Material-Theme-Default.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme High Contrast",
"path": "./build/themes/Material-Theme-Default-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Darker",
"path": "./build/themes/Material-Theme-Darker.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Darker High Contrast",
"path": "./build/themes/Material-Theme-Darker-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Palenight",
"path": "./build/themes/Material-Theme-Palenight.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Palenight High Contrast",
"path": "./build/themes/Material-Theme-Palenight-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Ocean",
"path": "./build/themes/Material-Theme-Ocean.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Ocean High Contrast",
"path": "./build/themes/Material-Theme-Ocean-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Deepforest",
"path": "./build/themes/Material-Theme-Deepforest.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme DeepForest High Contrast",
"path": "./build/themes/Material-Theme-Deepforest-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Lighter",
"path": "./build/themes/Material-Theme-Lighter.json",
"uiTheme": "vs"
},
{
"label": "Material Theme Lighter High Contrast",
"path": "./build/themes/Material-Theme-Lighter-High-Contrast.json",
"uiTheme": "vs"
}
]
},
"extensionDependency": [
"Equinusocio.vsc-material-theme-icons"
],
"badges": [
{
"url": "https://img.shields.io/github/issues/material-theme/vsc-material-theme",
"href": "https://github.com/material-theme/vsc-material-theme/issues",
"description": "Open issues"
}
],
"devDependencies": {
"@moxer/vscode-theme-generator": "1.21.0",
"@types/fs-extra": "8.1.0",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"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",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.1.3",
"vscode": "1.1.37"
},
"dependencies": {
}
}