-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "theme-blueprint",
"displayName": "Blueprint",
"description": "Palantir Blueprint syntax theme for VS Code",
"version": "1.1.0",
"publisher": "giladgray",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Blueprint",
"uiTheme": "vs-dark",
"path": "./themes/Blueprint-color-theme.json"
}
]
},
"galleryBanner": {
"color": "#E1E8ED"
},
"icon": "blueprint-logo.png",
"devDependencies": {
"@blueprintjs/tslint-config": "^1.9.0",
"@types/node": "^9.4.5",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"license": "Apache-2.0",
"scripts": {
"build": "ts-node src/index.ts",
"publish": "vsce publish",
"vscode:prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giladgray/vscode-theme-blueprint.git"
},
"bugs": {
"url": "https://github.com/giladgray/vscode-theme-blueprint/issues"
},
"homepage": "https://github.com/giladgray/vscode-theme-blueprint#readme"
}