From 1a1006e4b4aedeb0271b547cbbb66e76afdcffbe Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Fri, 26 Oct 2018 11:42:39 -0400 Subject: Integrate vscode-theme-generator --- package.json | 127 +++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 76 insertions(+), 51 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 073ffcb..d70e8aa 100644 --- a/package.json +++ b/package.json @@ -1,53 +1,78 @@ { - "name": "linux-themes", - "displayName": "Linux Themes for VS Code", - "description": "Color themes designed to match the popular Ubuntu themes.", - "version": "1.0.1", - "publisher": "SolarLiner", - "icon": "icon.png", - "license": "MIT", - "repository": { - "type": "GitHub", - "url": "https://github.com/SolarLiner/vscode-arc-theme" - }, - "engines": { - "vscode": "^1.12.0" - }, - "categories": [ - "Themes" - ], - "contributes": { - "themes": [ - { - "label": "Arc Dark", - "uiTheme": "vs-dark", - "path": "./themes/arc-dark.json" - }, - { - "label": "Arc", - "uiTheme": "vs", - "path": "./themes/arc.json" - }, - { - "label": "Adapta Nokto", - "uiTheme": "vs-dark", - "path": "./themes/adapta-nokto.json" - }, - { - "label": "Pocillo Dark", - "uiTheme": "vs-dark", - "path": "./themes/pocillo-dark.json" - }, - { - "label": "United Ubuntu", - "uiTheme": "vs-dark", - "path": "./themes/united-gnome.json" - }, - { - "label": "Ambiance [beta]", - "uiTheme": "vs-dark", - "path": "./themes/ambiance.json" - } - ] - } + "name": "linux-themes", + "displayName": "Linux Themes for VS Code", + "description": "Color themes designed to match the popular Ubuntu themes.", + "version": "1.0.1", + "publisher": "SolarLiner", + "icon": "icon.png", + "license": "MIT", + "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" + }, + "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": "Communitheme", + "uiTheme": "vs-dark", + "path": "./themes/dark/communitheme.json" + }, + { + "label": "Flat-Plat [beta]", + "uiTheme": "vs-dark", + "path": "./themes/dark/flat-plat.json" + }, + { + "label": "Pocillo Dark [beta]", + "uiTheme": "vs-dark", + "path": "./themes/dark/pocillo-dark.json" + }, + { + "label": "United Ubuntu", + "uiTheme": "vs-dark", + "path": "./themes/dark/united-gnome.json" + }, + { + "label": "Arc", + "uiTheme": "vs", + "path": "./themes/light/arc.json" + } + ] + }, + "devDependencies": { + "@types/node": "^10.12.0", + "glob": "^7.1.3", + "typescript": "^3.1.3", + "vscode-theme-generator": "0.0.20" + } } \ No newline at end of file -- cgit v1.2.3