forked from ayu-theme/vscode-ayu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.3 KB
/
package.json
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
{
"name": "ayu",
"displayName": "Ayu",
"description": "A simple theme with bright colors and comes in three versions — dark, light and mirage for all day long comfortable work.",
"version": "0.14.0",
"publisher": "teabyii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsenjoy/vscode-ayu"
},
"bugs": {
"url": "https://github.com/jsenjoy/vscode-ayu/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"icon-theme",
"theme",
"ayu"
],
"homepage": "https://github.com/jsenjoy/vscode-ayu",
"icon": "assets/logo.png",
"contributes": {
"themes": [
{
"label": "Ayu Dark",
"uiTheme": "vs-dark",
"path": "./ayu-dark.json"
},
{
"label": "Ayu Light",
"uiTheme": "vs",
"path": "./ayu-light.json"
},
{
"label": "Ayu Mirage",
"uiTheme": "vs-dark",
"path": "./ayu-mirage.json"
}
],
"iconThemes": [
{
"id": "ayu",
"label": "Ayu",
"path": "./ayu-icons.json"
}
]
},
"scripts": {
"build": "node ./build.js",
"package": "vsce package"
},
"devDependencies": {
"ayu": "4.0.0",
"vsce": "1.22.0"
}
}