mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.3.3 to 5.3.4. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.4/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "lima",
|
|
"displayName": "Lima",
|
|
"description": "Integration for Lima: Linux Machines (typically macOS)",
|
|
"version": "1.12.0-next",
|
|
"icon": "icon.png",
|
|
"publisher": "podman-desktop",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"podman-desktop": "^0.0.1"
|
|
},
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"configuration": {
|
|
"title": "Lima",
|
|
"properties": {
|
|
"lima.binary.path": {
|
|
"type": "string",
|
|
"format": "file",
|
|
"default": "",
|
|
"description": "Custom path to limactl binary (Default is blank)"
|
|
},
|
|
"lima.type": {
|
|
"type": "string",
|
|
"default": "podman",
|
|
"enum": [
|
|
"podman",
|
|
"docker",
|
|
"kubernetes"
|
|
],
|
|
"description": "Engine type (requires restart of extension)"
|
|
},
|
|
"lima.name": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Instance name (default is same name as type)"
|
|
},
|
|
"lima.socket": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Socket name (default is equal to type.sock)"
|
|
}
|
|
}
|
|
},
|
|
"menus": {
|
|
"dashboard/image": [
|
|
{
|
|
"command": "lima.image.move",
|
|
"title": "Push image to Lima cluster"
|
|
}
|
|
]
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "lima.image.move",
|
|
"title": "Lima: Move image to cluster..."
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "vite build && node ./scripts/build.js",
|
|
"test": "vitest run --coverage --passWithNoTests",
|
|
"test:watch": "vitest watch --coverage --passWithNoTests",
|
|
"watch": "vite build --watch"
|
|
},
|
|
"dependencies": {
|
|
"@podman-desktop/api": "^0.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"adm-zip": "^0.5.14",
|
|
"mkdirp": "^3.0.1",
|
|
"vite": "^5.3.4",
|
|
"vitest": "^1.6.0",
|
|
"tmp-promise": "^3.0.3"
|
|
}
|
|
}
|