aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: eef8be2eba5042f156ee629b8b945f88aefb9ab2 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  "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": "Yaru [beta]",
        "uiTheme": "vs-dark",
        "path": "./themes/dark/yaru.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"
  }
}