aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 370215c581fd6c1a046f6d0e82e6e8d5241e8c12 (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
84
85
86
87
88
{
  "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": "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 Dark",
        "uiTheme": "vs-dark",
        "path": "./themes/dark/yaru-dark.json"
      },
      {
        "label": "Arc",
        "uiTheme": "vs",
        "path": "./themes/light/arc.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"
  },
  "__metadata": {
    "id": "ff7b0247-07d3-4102-8b68-0175a12a51aa",
    "publisherDisplayName": "SolarLiner",
    "publisherId": "2bd479ce-6e68-4291-a283-5ad617948f94"
  }
}