mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
fixes https://github.com/containers/podman-desktop/issues/4938 Signed-off-by: Florent Benoit <fbenoit@redhat.com>
30 lines
823 B
JSON
30 lines
823 B
JSON
{
|
|
"name": "kubectl-cli-tool",
|
|
"displayName": "kubectl CLI",
|
|
"description": "Install and update kubectl CLI Tools without leaving Podman Desktop",
|
|
"version": "0.0.1",
|
|
"icon": "icon.png",
|
|
"publisher": "redhat",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"podman-desktop": "^0.0.1"
|
|
},
|
|
"main": "./dist/extension.js",
|
|
"scripts": {
|
|
"build": "vite build && node ./scripts/build.js",
|
|
"test": "vitest run --coverage",
|
|
"watch": "vite build -w",
|
|
"format:check": "prettier --check \"**/*.ts\" \"scripts/*.js\"",
|
|
"format:fix": "prettier --write \"**/*.ts\" \"scripts/*.js\""
|
|
},
|
|
"dependencies": {
|
|
"@podman-desktop/api": "^0.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"adm-zip": "^0.5.10",
|
|
"byline": "^5.0.0",
|
|
"copyfiles": "^2.4.1",
|
|
"mkdirp": "^2.1.3",
|
|
"vitest": "^0.34.6"
|
|
}
|
|
}
|