forked from ayu-theme/vscode-ayu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "monekoluv-ayu",
"displayName": "Monekoluv Ayu",
"description": "A simple theme with bright colors derived from Ayu with personal tweaks for all day long comfortable work.",
"version": "0.1.0",
"publisher": "monekoluv",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sbatten/vscode-monekoluv-ayu"
},
"bugs": {
"url": "https://github.com/sbatten/vscode-monekoluv-ayu/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"ayu",
"monekoluv"
],
"homepage": "https://github.com/jsenjoy/vscode-ayu",
"icon": "assets/logo.png",
"contributes": {
"themes": [
{
"label": "Monekoluv Ayu Light",
"uiTheme": "vs",
"path": "./monekoluv-ayu-light.json"
},
{
"label": "Monekoluv Ayu Light Bordered",
"uiTheme": "vs",
"path": "./monekoluv-ayu-light-bordered.json"
}
]
},
"scripts": {
"build": "ts-node ./src/build.ts",
"package": "vsce package",
"start": "npm run build; npm run package",
"publish": "vsce publish"
},
"devDependencies": {
"ayu": "^7.0.2",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"vsce": "^1.51.0"
}
}