-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "agathist-vscode-themes",
"displayName": "Agathist Themes",
"description": "A collection of VSCode themes based on Agathist's brand colors",
"version": "0.1.3",
"icon": "./images/logo.png",
"engines": {
"vscode": "^1.22.0"
},
"scripts": {
"release": "vsce publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agathist/vscode-themes.git"
},
"categories": [
"Themes"
],
"keywords": [
"agathist",
"theme",
"dark",
"rose",
"pink"
],
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (https://kyleshevlin.com/)",
"license": "MIT",
"publisher": "agathist",
"bugs": {
"url": "https://github.com/agathist/vscode-themes/issues"
},
"homepage": "https://github.com/agathist/vscode-themes#readme",
"extensionKind": [
"ui",
"workspace"
],
"contributes": {
"themes": [
{
"label": "Agathist Dark",
"uiTheme": "vs-dark",
"path": "./themes/agathist-dark-color-theme.json"
}
]
},
"devDependencies": {
"@vscode/vsce": "^2.24.0"
}
}