-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "moonlight",
"displayName": "Moonlight",
"description": "A VS Code theme with bubblegum colors on a moonlit background.",
"version": "0.11.1",
"publisher": "atomiks",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atomiks/moonlight-vscode-theme"
},
"keywords": ["Theme", "Dark Theme", "Moonlight", "Night Theme"],
"scripts": {
"publish": "vsce publish",
"build": "bun scripts/build.ts",
"format": "npx @biomejs/biome format **/*.{ts,js} --write"
},
"galleryBanner": {
"color": "#061526",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": ["Themes"],
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Moonlight II",
"uiTheme": "vs-dark",
"path": "./themes/moonlight-ii.json"
},
{
"label": "Moonlight II Italic",
"uiTheme": "vs-dark",
"path": "./themes/moonlight-ii-italic.json"
},
{
"label": "Moonlight",
"uiTheme": "vs-dark",
"path": "./themes/moonlight.json"
},
{
"label": "Moonlight Italic",
"uiTheme": "vs-dark",
"path": "./themes/moonlight-italic.json"
}
]
},
"devDependencies": {
"@biomejs/biome": "^1.5.1",
"prettier": "^3.1.1",
"vsce": "^2.15.0"
}
}