forked from dfoxfranke/lunaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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": "semantic-lunaria",
"displayName": "Semantic Lunaria",
"publisher": "ifplusor",
"description": "A family of scientifically-designed, moderate-contrast, semantic color themes",
"repository": {
"type": "git",
"url": "https://github.com/ifplusor/lunaria"
},
"homepage": "https://lunaria.design",
"bugs": "https://github.com/ifplusor/lunaria/issues",
"license": "Apache-2.0",
"version": "0.0.4",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Semantic Lunaria Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "Semantic Lunaria Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
},
{
"label": "Semantic Lunaria Eclipse",
"uiTheme": "vs-dark",
"path": "./themes/eclipse.json"
},
{
"label": "Semantic Lunaria E-Ink",
"uiTheme": "hc-light",
"path": "./themes/e-ink.json"
}
]
},
"dependencies": {},
"devDependencies": {
"js-yaml": "^4.1.0",
"vsce": "^2.15.0"
},
"scripts": {
"build": "make",
"package": "vsce package --pre-release",
"vscode:prepublish": "npm run build",
"vsce-publish": "vsce publish --pre-release"
}
}