podman-desktop/extensions/lima/package.json
dependabot[bot] f7069e9427 chore(deps-dev): bump vite from 7.2.6 to 7.2.7
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.2.6 to 7.2.7.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.2.7/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.7/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 07:23:37 +01:00

81 lines
2.1 KiB
JSON

{
"name": "lima",
"displayName": "Lima",
"description": "Integration for Lima: Linux Machines (typically macOS)",
"version": "1.24.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.home": {
"type": "string",
"default": "",
"markdownDescription": "Lima home directory. See [documentation](https://lima-vm.io/docs/dev/internals/#lima-home-directory-lima_home)"
},
"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": "workspace:*"
},
"devDependencies": {
"adm-zip": "^0.5.16",
"mkdirp": "^3.0.1",
"vite": "^7.2.7",
"vitest": "^4.0.10",
"tmp-promise": "^3.0.3"
}
}