aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 515959b855c61c5d93ea7fc7f2994dcca27580bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
  "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": {
    "start": "code . --extensionDevelopmentPath=\"$(pwd)\" && npx gulp watch",
    "vscode:prepublish": "npx gulp"
  },
  "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",
    "gulp": "^4.0.1",
    "gulp-clean": "^0.4.0",
    "gulp-run": "^1.7.1",
    "gulp-typescript": "^5.0.1",
    "through2": "^3.0.1",
    "typescript": "^3.1.3",
    "vinyl-file": "^3.0.0",
    "vscode-theme-generator": "0.0.21"
  }
}