aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 9d28320c83981992baf1884ac05601b61a47488c (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": {
    "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"
  }
}