forked from dempfi/ayu
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
83 lines (83 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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": "1.0.3",
"publisher": "teabyii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ayu-theme/vscode-ayu"
},
"bugs": {
"url": "https://github.com/ayu-theme/vscode-ayu/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"icon-theme",
"theme",
"ayu"
],
"homepage": "https://github.com/ayu-theme/vscode-ayu",
"icon": "assets/logo.png",
"contributes": {
"themes": [
{
"label": "Ayu Dark",
"uiTheme": "vs-dark",
"path": "./ayu-dark.json"
},
{
"label": "Ayu Dark Bordered",
"uiTheme": "vs-dark",
"path": "./ayu-dark-bordered.json"
},
{
"label": "Ayu Light",
"uiTheme": "vs",
"path": "./ayu-light.json"
},
{
"label": "Ayu Light Bordered",
"uiTheme": "vs",
"path": "./ayu-light-bordered.json"
},
{
"label": "Ayu Mirage",
"uiTheme": "vs-dark",
"path": "./ayu-mirage.json"
},
{
"label": "Ayu Mirage Bordered",
"uiTheme": "vs-dark",
"path": "./ayu-mirage-bordered.json"
}
],
"iconThemes": [
{
"id": "ayu",
"label": "Ayu",
"path": "./ayu-icons.json"
}
]
},
"scripts": {
"build": "ts-node ./src/build.ts",
"package": "vsce package",
"start": "npm run build; npm run package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^16.6.0",
"ayu": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"vsce": "^1.96.1"
}
}