-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 986 Bytes
/
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
{
"name": "codesandbox-projects-theme",
"displayName": "CodeSandbox Theme",
"description": "A CodeSandbox theme for Visual Studio Code",
"version": "1.1.0",
"publisher": "CodeSandbox-io",
"license": "Apache-2.0",
"scripts": {
"release": "yes | vsce publish $BUMP --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/vscode-theme"
},
"author": {
"name": "CodeSandbox",
"url": "https://codesandbox.io"
},
"icon": "media/icon.png",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "CodeSandbox",
"uiTheme": "vs-dark",
"path": "./themes/codesandbox-dark.json"
}
]
},
"engines": {
"vscode": "^1.45.0"
},
"keywords": [
"Theme",
"Dark Theme",
"CodeSandbox",
"Sandbox",
"CSB"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"devDependencies": {
"vsce": "^2.7.0"
}
}