-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1022 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
{
"name": "positron-vscode",
"displayName": "Positron",
"description": "A clean and colorful theme for Visual Studio Code",
"version": "0.1.0",
"author": "Mirko Schubert <mirkoschubert@gmail.com>",
"publisher": "mirkoschubert",
"license": "MIT",
"engines": {
"vscode": "^1.20.0"
},
"scripts": {
"build": "node build.js"
},
"categories": [
"Themes"
],
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#2a2c2d",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/mirkoschubert/positron-vscode.git"
},
"contributes": {
"themes": [
{
"label": "Positron",
"uiTheme": "vs-dark",
"path": "./themes/Positron.json"
}
]
},
"__metadata": {
"id": "",
"publisherDisplayName": "Mirko Schubert",
"publisherId": ""
},
"devDependencies": {
"eslint-config-healthsparq": "^4.0.0",
"ibm-design-colors": "^2.0.4",
"js-yaml": "^3.11.0",
"prettier": "^1.11.1"
}
}