-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "minimal-dark-s1f",
"displayName": "Minimal Dark",
"description": "A dark theme based on vscode theme-defaults.",
"version": "0.1.15",
"publisher": "Sadra1f",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.31.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sadra1f/minimal-dark-vscode-theme"
},
"keywords": [
"Theme",
"Dark Theme",
"Night Theme"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Minimal Dark",
"uiTheme": "vs-dark",
"path": "./themes/minimal-dark.json"
}
]
},
"scripts": {
"dev": "nodemon --watch src src/generate.js",
"generate": "node src/generate.js",
"package": "vsce package --out dist/",
"build": "run-s generate package",
"login": "vsce login",
"publish": "vsce publish",
"format": "prettier --write src/"
},
"devDependencies": {
"@vscode/vsce": "^2.21.1",
"jsonc-parser": "^3.2.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1"
}
}