forked from gardener-attic/vscode-gardener-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "vscode-gardener-tools",
"displayName": "Gardener Kubernetes Service",
"publisher": "sap-kubernetes-tools",
"repository": {
"type": "git",
"url": "https://github.com/gardener/vscode-gardener-tools"
},
"description": "Display Gardener Kubernetes Services within VS Code",
"version": "0.0.3",
"engines": {
"vscode": "^1.34.0"
},
"license": "SEE LICENSE IN LICENSE.md",
"categories": [
"Other"
],
"keywords": [
"kubernetes",
"gardener",
"kubernetes-extension-cloud-provider"
],
"activationEvents": [
"onView:kubernetes.cloudExplorer"
],
"main": "./src/extension.js",
"contributes": {
"configuration": {
"title": "Gardener Kubernetes Tools",
"properties": {
"vscode-gardener-tools": {
"type": "object",
"description": "VScode Gardener Settings",
"properties": {
"vscode-light-theme": {
"type": "boolean",
"description": "Set this value to true if you are using a vscode light theme"
},
"landscapes": {
"type": "array",
"description": "Garden Landscapes",
"items": {
"type": "object",
"description": "Garden Landscape",
"properties": {
"name": {
"type": "string",
"description": "Name of the garden cluster"
},
"kubeconfigPath": {
"type": "string",
"description": "Path to the kubeconfig of the garden cluster"
},
"dashboardUrl": {
"type": "string",
"description": "Gardener dashboard URL"
},
"projects": {
"type": "array",
"description": "Optional list of projects (names) to be shown. However, you should specify this list if you do not have operator rights on the garden cluster or if you want to see only those projects.",
"optional": true,
"items": {
"type": "string",
"description": "Project name"
}
}
}
}
}
}
}
}
},
"commands": [
{
"command": "vs-gardener.showInDashboard",
"title": "Show In Dashboard",
"category": "Gardener"
},
{
"command": "vs-gardener.createShoot",
"title": "Create Cluster",
"category": "Gardener"
},
{
"command": "vs-gardener.createProject",
"title": "Create Project",
"category": "Gardener"
}
],
"menus": {
"view/item/context": [
{
"command": "vs-gardener.showInDashboard",
"when": "viewItem =~ /gardener\\.shoot/i"
},
{
"command": "vs-gardener.showInDashboard",
"when": "viewItem =~ /gardener\\.project/i"
},
{
"command": "vs-gardener.showInDashboard",
"when": "viewItem =~ /gardener\\.landscape/i"
},
{
"command": "vs-gardener.createShoot",
"when": "viewItem =~ /gardener\\.project/i"
},
{
"command": "vs-gardener.createProject",
"when": "viewItem =~ /gardener\\.landscape/i"
}
]
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"lodash": "^4.17.11",
"url-join": "^4.0.0",
"vscode-kubernetes-tools-api": "^1.0.0"
}
}