{ "name": "linux-themes", "displayName": "Linux Themes for VS Code", "description": "Color themes designed to match the popular Ubuntu themes.", "version": "1.1.0", "publisher": "rdnlsmith", "icon": "icon.png", "license": "GPL-3.0", "scripts": { "clean": "node clean.js", "build": "tsc", "prerebuild": "npm run clean", "rebuild": "npm run build", "pregenerate": "npm run rebuild", "generate": "node generate.js", "start": "npm run generate", "vscode:prepublish": "npm run generate" }, "repository": { "type": "GitHub", "url": "https://github.com/rdnlsmith/vscode-arc-theme" }, "engines": { "vscode": "^1.12.0" }, "categories": [ "Themes" ], "contributes": { "themes": [ { "label": "Adapta Nokto", "uiTheme": "vs-dark", "path": "./themes/dark/adapta-nokto.json" }, { "label": "Ambiance [beta]", "uiTheme": "vs-dark", "path": "./themes/dark/ambiance.json" }, { "label": "Arc Dark", "uiTheme": "vs-dark", "path": "./themes/dark/arc-dark.json" }, { "label": "United Ubuntu", "uiTheme": "vs-dark", "path": "./themes/dark/united-gnome.json" }, { "label": "Yaru Dark", "uiTheme": "vs-dark", "path": "./themes/dark/yaru-dark.json" }, { "label": "Yaru", "uiTheme": "vs", "path": "./themes/light/yaru.json" } ] }, "devDependencies": { "@types/node": "^10.12.0", "glob": "^7.1.3", "typescript": "^3.1.3", "vscode-theme-generator": "0.0.21" } }