-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "cozy-dark-plus",
"displayName": "Cozy Dark",
"description": "A little cozier dark theme",
"author": "Felix Bohlin",
"publisher": "FelixBohlin",
"version": "2.3.3",
"icon": "icon.png",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/felix-bohlin/cozy-dark.git"
},
"engines": {
"vscode": "^1.69.0"
},
"keywords": [
"Dark+",
"cozy",
"dark",
"modern",
"city lights",
"theme"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Cozy Dark",
"uiTheme": "vs-dark",
"path": "./themes/cozy-dark.json"
}
]
},
"scripts": {
"dev": "nodemon --watch src src/index.js",
"build": "node src/index.js",
"package": "npm run build && vsce package",
"publish:patch": "vsce publish patch",
"publish": "vsce publish minor",
"publish:major": "vsce publish major"
},
"devDependencies": {
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"vsce": "^2.15.0"
}
}