mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
124 lines
3.1 KiB
JSON
124 lines
3.1 KiB
JSON
{
|
|
"name": "one-dark-theme",
|
|
"displayName": "One Dark Theme",
|
|
"description": "One Dark theme for Visual Studio Code",
|
|
"version": "1.14.2",
|
|
"publisher": "mskelton",
|
|
"author": "Mark Skelton",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/one-dark/vscode-one-dark-theme.git"
|
|
},
|
|
"homepage": "https://github.com/one-dark/vscode-one-dark-theme#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/one-dark/vscode-one-dark-theme/issues"
|
|
},
|
|
"keywords": [
|
|
"one-dark",
|
|
"one-dark-vivid",
|
|
"one-dark-italic",
|
|
"vscode-theme",
|
|
"vscode"
|
|
],
|
|
"scripts": {
|
|
"build": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint .",
|
|
"theme": "ts-node ./generator/index.ts",
|
|
"theme:watch": "nodemon ./generator/index.ts",
|
|
"ts": "tsc",
|
|
"watch": "npm run build -- --sourcemap --watch",
|
|
"vscode:prepublish": "npm run theme && npm run build -- --minify"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.63.1"
|
|
},
|
|
"categories": [
|
|
"Themes"
|
|
],
|
|
"icon": "static/icon.png",
|
|
"galleryBanner": {
|
|
"color": "#2d323b",
|
|
"theme": "dark"
|
|
},
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"main": "./dist/main.js",
|
|
"browser": "./dist/main.js",
|
|
"contributes": {
|
|
"themes": [
|
|
{
|
|
"label": "One Dark",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/one-dark.json"
|
|
},
|
|
{
|
|
"label": "One Dark Vivid",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/one-dark-vivid.json"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "One Dark",
|
|
"properties": {
|
|
"oneDark.bold": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "Uses bold font for certain language keywords."
|
|
},
|
|
"oneDark.italic": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Uses italic font for language keywords and comments."
|
|
},
|
|
"oneDark.vivid": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"deprecationMessage": "Use the One Dark Vivid color theme instead.",
|
|
"markdownDescription": "Uses the [vivid](https://atom.io/themes/one-dark-vivid-syntax) color palette."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"capabilities": {
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
},
|
|
"virtualWorkspaces": true
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.7",
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
"@mskelton/eslint-config": "^7.1.0",
|
|
"@types/node": "^17.0.8",
|
|
"@types/vscode": "^1.63.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.9.1",
|
|
"@typescript-eslint/parser": "^5.9.1",
|
|
"esbuild": "^0.14.11",
|
|
"eslint": "^8.6.0",
|
|
"eslint-plugin-sort": "^2.3.1",
|
|
"nodemon": "^2.0.15",
|
|
"prettier": "^2.5.1",
|
|
"semantic-release": "^18.0.1",
|
|
"semantic-release-vsce": "^3.5.0",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.5.4",
|
|
"vsce": "^2.6.3"
|
|
},
|
|
"__metadata": {
|
|
"id": "1129678e-1c73-440c-a171-6941d28fb442",
|
|
"publisherId": "8b539147-9d92-4011-995b-f3498754ebda",
|
|
"publisherDisplayName": "Mark Skelton",
|
|
"targetPlatform": "undefined",
|
|
"updated": false,
|
|
"isPreReleaseVersion": false,
|
|
"preRelease": false,
|
|
"installedTimestamp": 1650292741566
|
|
}
|
|
} |