-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1019 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1019 Bytes
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
{
"name": "angular-theme",
"displayName": "Angular Theme",
"description": "VS Code Theme for Angular projects based on Vercel UI Style Guide",
"version": "7.1.2",
"preview": true,
"publisher": "MichaellAlavedraMunayco",
"license": "MIT",
"icon": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/gitchaell/angular-vscode-theme"
},
"homepage": "https://github.com/gitchaell/angular-vscode-theme",
"bugs": {
"url": "https://github.com/gitchaell/angular-vscode-theme/issues"
},
"pricing": "Free",
"scripts": {
"test": "vsce --help",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"vsce": "^2.6.3"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Themes"
],
"keywords": [
"angular",
"dark",
"color",
"theme",
"vercel",
"next.js",
"vscode-theme"
],
"contributes": {
"themes": [
{
"label": "Angular Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/angular.dark.theme.json"
}
]
}
}