-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "vscode-k8s-quick-attach",
"version": "0.8.0",
"description": "This extension provide a quick way to attach VSCode to k8s Pod",
"main": "./out/extension.js",
"publisher": "mtsmfm",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "esbuild src/extension.ts --bundle --outdir=out --external:vscode --external:shelljs --sourcemap --platform=node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtsmfm/vscode-k8s-quick-attach.git"
},
"author": "Fumiaki MATSUSHIMA",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtsmfm/vscode-k8s-quick-attach/issues"
},
"homepage": "https://github.com/mtsmfm/vscode-k8s-quick-attach#readme",
"devDependencies": {
"@types/node": "^16.11.4",
"@types/vscode": "^1.52.0",
"esbuild": "^0.13.9",
"ovsx": "^0.2.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"vsce": "^1.100.2"
},
"contributes": {
"commands": [
{
"command": "vscode-k8s-quick-attach.quickAttach",
"title": "k8s quick attach: Quick Attach k8s Pod"
}
]
},
"activationEvents": [
"onCommand:vscode-k8s-quick-attach.quickAttach"
],
"engines": {
"vscode": "^1.52.0"
},
"extensionKind": [
"ui",
"workspace"
],
"dependencies": {
"@kubernetes/client-node": "^0.16.1"
}
}