-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "alucard-nocturne",
"displayName": "Alucard Nocturne",
"version": "0.1.1",
"description": "A sophisticated VS Code theme inspired by Castlevania's aesthetic, featuring both dark and light variants.",
"publisher": "edmo",
"bugs": {
"url": "https://github.com/edmolima/alucard/issues"
},
"icon": "./assets/icon.png",
"scripts": {
"build": "echo 'Building...'",
"vscode:prepublish": "npm run build",
"release": "bumpp --all && vsce publish --no-dependencies",
"pack": "vsce pack --no-dependencies",
"prepublishOnly": "npm run build"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"vscode",
"castlevania",
"alucard",
"dark",
"light",
"nocturne",
"sophisticated",
"elegant"
],
"engines": {
"vscode": "^1.70.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edmolima/alucard.git"
},
"contributes": {
"themes": [
{
"label": "Alucard Theme",
"uiTheme": "vs-dark",
"path": "./themes/alucard-dark.json"
},
{
"label": "Alucard Theme (Light)",
"uiTheme": "vs",
"path": "./themes/alucard-light.json"
}
]
},
"author": "Edmo Lima <soedmolima@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vscode/vsce": "^3.2.1",
"bumpp": "^9.8.1"
}
}