-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 KB
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
{
"name": "one-dark-vscode-theme",
"displayName": "One Dark VS Code Theme",
"description": "Merges One Dark Theme token colors with VS Code editor colors",
"icon": "logo.png",
"categories": [
"Themes"
],
"version": "1.0.4",
"publisher": "mak626",
"license": "MIT",
"engines": {
"vscode": "*"
},
"contributes": {
"themes": [
{
"id": "mak-one-light-pro",
"label": "MAK's One Light Pro",
"uiTheme": "vs",
"path": "./themes/one_light_pro.json"
},
{
"id": "mak-one-light-pro-2",
"label": "MAK's One Light Pro V2",
"uiTheme": "vs",
"path": "./themes/one_light_pro_v2.json"
},
{
"id": "mak-one-dark-pro",
"label": "MAK's One Dark Pro",
"uiTheme": "vs-dark",
"path": "./themes/one_dark_pro.json"
},
{
"id": "mak-one-dark-pro-2",
"label": "MAK's One Dark Pro V2",
"uiTheme": "vs-dark",
"path": "./themes/one_dark_pro_v2.json"
},
{
"id": "mak-one-dark-pro-3",
"label": "MAK's One Dark Pro V3",
"uiTheme": "vs-dark",
"path": "./themes/one_dark_pro_V3.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/mak626/mak-onedark-theme.git"
},
"scripts": {
"build": "vsce package -o dist/",
"publish": "vsce publish"
}
}