-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rider-theme",
"displayName": "Rider IDE Themes",
"publisher": "muhammad-sammy",
"version": "1.1.1",
"license": "Apache-2.0",
"author": "Muhammad Sammy [@muhammadsammy]",
"homepage": "https://github.com/muhammadsammy/rider-themes-vscode",
"repository": {
"type": "git",
"url": "https://github.com/muhammadsammy/rider-themes-vscode"
},
"bugs": {
"url": "https://github.com/muhammadsammy/rider-themes-vscode/issues"
},
"scripts": {
"clean": "rimraf dist",
"prestart": "tsc",
"start": "node dist/index.js",
"release": "git pull && standard-version --release-as minor && git push --follow-tags",
"release:major": "git pull && standard-version --release-as major && git push --follow-tags"
},
"engines": {
"node": "^14.0.0",
"vscode": "^1.40.0"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"VSCode",
"Themes",
"theme",
"rider",
"resharper"
],
"extensionKind": [
"ui"
],
"contributes": {
"themes": [
{
"label": "Rider Dark",
"uiTheme": "vs-dark",
"path": "./build/rider-dark.json"
},
{
"label": "Rider Light",
"uiTheme": "vs",
"path": "./build/rider-light.json"
},
{
"label": "Resharper Dark",
"uiTheme": "vs-dark",
"path": "./build/resharper-dark.json"
}
]
},
"devDependencies": {
"@moxer/vscode-theme-generator": "1.20.0",
"@types/fs-extra": "9.0.1",
"@types/node": "^14.10.2",
"fs-extra": "9.0.1",
"rimraf": "3.0.2",
"typescript": "4.0.2"
},
"dependencies": {
"standard-version": "9.0.0"
}
}