-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.83 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
60
61
62
63
64
65
66
67
{
"name": "a-galaxy-far-far-away-theme",
"displayName": "A Galaxy Far, Far Away Theme",
"version": "3.3.1",
"private": true,
"description": "A Visual Studio Code theme from a galaxy far, far away...",
"categories": [
"Other",
"Themes"
],
"keywords": [
"Accessibility",
"Dark Theme",
"The Empire",
"Rogue Squadron",
"Star Wars",
"Theme",
"VSCode"
],
"homepage": "https://marketplace.visualstudio.com/items?itemName=danmad.a-galaxy-far-far-away-theme",
"bugs": "https://github.com/danmad/a-galaxy-far-far-away-theme/issues",
"repository": "https://github.com/danmad/a-galaxy-far-far-away-theme.git",
"license": "MIT",
"author": {
"name": "Daniel Maddison",
"email": "[email protected]",
"url": "https://www.danielmaddison.io"
},
"publisher": "DanMad",
"scripts": {
"bootstrap": "yarn install",
"postbootstrap": "husky install && chmod +x .husky/*",
"prebuild": "rm -rf themes && mkdir themes",
"build": "json-stringify src/the-empire-theme.js -o themes/the-empire-theme.json && json-stringify src/rogue-squadron-theme.js -o themes/rogue-squadron-theme.json",
"unstrap": "rm -rf node_modules themes yarn-error.log"
},
"contributes": {
"themes": [
{
"label": "Rogue Squadron",
"path": "./themes/rogue-squadron-theme.json",
"uiTheme": "vs-dark"
},
{
"label": "The Empire",
"path": "./themes/the-empire-theme.json",
"uiTheme": "vs-dark"
}
]
},
"devDependencies": {
"husky": "^8.0.3",
"json-stringify-cli": "^1.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sort-package-json": "^2.4.1",
"vsce": "^2.15.0"
},
"engines": {
"vscode": "^1.42.0"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#04070b",
"theme": "dark"
}
}