-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 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
{
"name": "titan-vscode-theme",
"description": "A definitive dark theme for VS Code",
"version": "1.0.6",
"displayName": "Titan Theme",
"publisher": "diogomoretti",
"author": "Diogo Moretti",
"icon": "images/icon.png",
"scripts": {
"build": "node build",
"watch": "nodemon --watch src/colors.js --watch src/*.json build.js",
"publishvscode": "vsce publish",
"publishtag": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/diogomoretti/titan-vscode-theme"
},
"license": "MIT",
"galleryBanner": {
"color": "#252525",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Titan Theme",
"uiTheme": "vs-dark",
"path": "./themes/titan-color-theme.json"
}
]
},
"keywords": [
"Theme",
"Dark"
],
"dependencies": {
"nodemon": "2.0.20"
}
}