-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "hexxa-theme",
"description": "A definitive theme for Cursor AI and VS Code",
"version": "1.0.3",
"displayName": "Hexxa Theme",
"publisher": "diogomoretti",
"author": "Diogo Moretti",
"icon": "images/icon.png",
"scripts": {
"build": "node build",
"dev": "nodemon --watch src/colors.js --watch src/*.json build.js",
"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",
"publishvscode": "vsce publish",
"release": "npm run build && npm run publishtag && npm run publishvscode"
},
"node": "20",
"repository": {
"type": "git",
"url": "https://github.com/diogomoretti/hexxa-theme"
},
"license": "MIT",
"galleryBanner": {
"color": "#120E1D",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Hexxa Theme",
"uiTheme": "vs-dark",
"path": "./themes/hexxa-color-theme.json"
}
]
},
"keywords": [
"Theme",
"Dark"
],
"devDependencies": {
"nodemon": "^3.1.9"
}
}