forked from okteto/remote-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
177 lines (177 loc) · 5.04 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "remote-kubernetes",
"publisher": "Okteto",
"displayName": "Remote - Kubernetes",
"description": "Remote Kubernetes Development in VS Code with Okteto",
"keywords": [
"kubernetes",
"docker",
"remote",
"remote development",
"ssh",
"containers",
"aks",
"gke",
"eks"
],
"version": "0.4.10",
"icon": "media/icon.png",
"author": {
"name": "Ramiro Berrelleza",
"email": "[email protected]"
},
"homepage": "https://github.com/okteto/remote-kubernetes",
"bugs": {
"url": "https://github.com/okteto/remote-kubernetes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/okteto/remote-kubernetes.git"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other",
"Azure"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "okteto.create",
"title": "Okteto: Create Manifest",
"enablement": "workspaceFolderCount != 0"
},
{
"command": "okteto.down",
"title": "Okteto: Down"
},
{
"command": "okteto.install",
"title": "Okteto: Install"
},
{
"command": "okteto.up",
"title": "Okteto: Up"
},
{
"command": "okteto.context",
"title": "Okteto: Set the context for all the Okteto commands"
},
{
"command": "okteto.namespace",
"title": "Okteto: Set the namespace for all the Okteto commands"
},
{
"command": "okteto.deploy",
"title": "Okteto: Deploy your development environment"
},
{
"command": "okteto.destroy",
"title": "Okteto: Destroy your development environment"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceFilename in ext.supportedUpFilenames",
"command": "okteto.up",
"group": "navigation"
},
{
"when": "resourceFilename in ext.supportedDeployFiles",
"command": "okteto.deploy",
"group": "navigation"
}
]
},
"configuration": {
"title": "Okteto",
"properties": {
"okteto.remoteSSH": {
"type": "boolean",
"default": true,
"description": "Connect to the development container using VSCode's Remote-SSH extension."
},
"okteto.binary": {
"type": "string",
"default": "",
"description": "An absolute path to the Okteto executable. When empty, it will use \"okteto\" on the path."
},
"okteto.telemetry": {
"type": "boolean",
"default": true,
"description": "Enable data collection."
},
"okteto.gitBash": {
"type": "boolean",
"default": false,
"description": "Use Git Bash compatible file paths. Enable this if you're in Windows and Git Bash is your default shell."
},
"okteto.upArgs": {
"type": "string",
"default": "--log-level=warn",
"description": "Extra arguments to pass to okteto up. You can use it to get debug logs, force a build before the up command, etc..."
},
"okteto.upTimeout": {
"type": "number",
"default": "100",
"description": "Timeout, in seconds, of the up command"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"package": "vsce package",
"pretest": "npm run compile",
"test": "mocha -r ts-node/register src/test/suite/*.test.ts",
"publish": "vsce publish -p $VSCE_TOKEN",
"publish-prerelease": "vsce publish -p $VSCE_TOKEN --pre-release",
"publish-sentry": "sentry-cli releases new $VERSION && sentry-cli releases set-commits --auto $VERSION && sentry-cli releases files $VERSION upload-sourcemaps --rewrite dist && sentry-cli releases finalize $VERSION"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.0",
"@types/semver": "^7.5.0",
"@types/vscode": "^1.69.0",
"@vscode/vsce": "^2.19.0",
"chai": "^4.3.4",
"glob": "^7.1.7",
"markdown-it": ">=12.3.2",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.2",
"vscode-test": "^1.6.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@sentry/cli": "^2.19.4",
"@sentry/node": "^7.58.1",
"@types/command-exists": "^1.2.0",
"@types/user-home": "^2.0.0",
"@types/yaml": "^1.9.7",
"bufferutil": "^4.0.3",
"change-case": "^4.1.2",
"command-exists": "^1.2.9",
"execa": "^5.1.1",
"find-process": "^1.4.4",
"get-port": "^5.1.1",
"got": "^12.5.2",
"mixpanel": "^0.17.0",
"node-machine-id": "^1.1.12",
"semver": "^7.5.4",
"tcp-ping": "^0.1.1",
"utf-8-validate": "^5.0.5",
"yaml": "^2.3.1"
}
}