aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:42:39 -0400
committerGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:42:39 -0400
commit1a1006e4b4aedeb0271b547cbbb66e76afdcffbe (patch)
tree57c9b1590494ae3802f34eee675273c62b644451 /package.json
parenta6d232d837e807a6e52fbb154543a765cab9b0f0 (diff)
Integrate vscode-theme-generator
Diffstat (limited to 'package.json')
-rw-r--r--package.json127
1 files changed, 76 insertions, 51 deletions
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