-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 Bytes
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
{
"name": "@mitchreece/vscode-theme",
"version": "1.0.0",
"engines": {
"vscode": "^1.0.0"
},
"publisher": "mitchreece",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Mitch Theme",
"uiTheme": "vs-dark",
"path": "./theme.json"
}
]
},
"scripts": {
"postinstall": "cd ./bin && chmod +x ./install.sh && ./install.sh",
"preuninstall": "cd ./bin && chmod +x ./uninstall.sh && ./uninstall.sh",
"build": "node build/",
"precommit": "yarn build && git add theme.json"
},
"repository": "https://github.com/mitchreece/vscode-theme",
"author": "mitchreece <mitchellreece18@gmail.com>",
"license": "MIT",
"files": [
"theme.json",
"bin/*"
],
"devDependencies": {
"@mitchreece/theme-variables": "^1.0.0",
"husky": "^0.14.3"
}
}