forked from primer/github-vscode-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 963 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
50
51
52
{
"name": "dejavu-vscode-theme",
"displayName": "DejaVu Theme",
"description": "Familiar VSCode theme with Primer CSS",
"version": "3.1.0",
"preview": true,
"publisher": "laziu",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/laziu/dejavu-vscode-theme"
},
"bugs": {
"url": "https://github.com/laziu/dejavu-vscode-theme/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"github",
"light",
"dark"
],
"contributes": {
"themes": [
{
"label": "DejaVu Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "DejaVu Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
]
},
"devDependencies": {
"@primer/primitives": "^2.0.1",
"color": "^3.1.2",
"nodemon": "^2.0.3"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js"
}
}