2022-03-08 16:49:08 +00:00
|
|
|
{
|
|
|
|
|
"name": "lima",
|
2022-12-07 13:25:08 +00:00
|
|
|
"displayName": "Lima",
|
2024-02-14 17:06:53 +00:00
|
|
|
"description": "Integration for Lima: Linux Machines (typically macOS)",
|
2025-05-21 15:12:53 +00:00
|
|
|
"version": "1.20.0-next",
|
2022-03-08 16:49:08 +00:00
|
|
|
"icon": "icon.png",
|
2023-04-24 20:18:30 +00:00
|
|
|
"publisher": "podman-desktop",
|
2022-06-22 14:49:16 +00:00
|
|
|
"license": "Apache-2.0",
|
2022-03-08 16:49:08 +00:00
|
|
|
"engines": {
|
2022-04-14 09:42:56 +00:00
|
|
|
"podman-desktop": "^0.0.1"
|
2022-03-08 16:49:08 +00:00
|
|
|
},
|
|
|
|
|
"main": "./dist/extension.js",
|
|
|
|
|
"contributes": {
|
2023-05-29 14:39:35 +00:00
|
|
|
"configuration": {
|
|
|
|
|
"title": "Lima",
|
|
|
|
|
"properties": {
|
2023-10-24 09:41:06 +00:00
|
|
|
"lima.binary.path": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"format": "file",
|
|
|
|
|
"default": "",
|
|
|
|
|
"description": "Custom path to limactl binary (Default is blank)"
|
|
|
|
|
},
|
2024-11-24 23:53:10 +00:00
|
|
|
"lima.home": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "",
|
|
|
|
|
"markdownDescription": "Lima home directory. See [documentation](https://lima-vm.io/docs/dev/internals/#lima-home-directory-lima_home)"
|
|
|
|
|
},
|
2023-05-29 14:39:35 +00:00
|
|
|
"lima.type": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "podman",
|
2024-10-11 07:36:31 +00:00
|
|
|
"enum": ["podman", "docker", "kubernetes"],
|
2023-05-29 14:39:35 +00:00
|
|
|
"description": "Engine type (requires restart of extension)"
|
|
|
|
|
},
|
|
|
|
|
"lima.name": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "",
|
|
|
|
|
"description": "Instance name (default is same name as type)"
|
2023-10-27 12:46:05 +00:00
|
|
|
},
|
|
|
|
|
"lima.socket": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "",
|
|
|
|
|
"description": "Socket name (default is equal to type.sock)"
|
2023-05-29 14:39:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
2023-10-24 09:43:41 +00:00
|
|
|
},
|
|
|
|
|
"menus": {
|
|
|
|
|
"dashboard/image": [
|
|
|
|
|
{
|
|
|
|
|
"command": "lima.image.move",
|
|
|
|
|
"title": "Push image to Lima cluster"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "lima.image.move",
|
|
|
|
|
"title": "Lima: Move image to cluster..."
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-03-08 16:49:08 +00:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-12-21 10:12:03 +00:00
|
|
|
"build": "vite build && node ./scripts/build.js",
|
2023-03-28 10:56:20 +00:00
|
|
|
"test": "vitest run --coverage --passWithNoTests",
|
|
|
|
|
"test:watch": "vitest watch --coverage --passWithNoTests",
|
2023-12-21 10:12:03 +00:00
|
|
|
"watch": "vite build --watch"
|
2022-03-08 16:49:08 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-08-29 20:13:01 +00:00
|
|
|
"@podman-desktop/api": "workspace:*"
|
2022-03-08 16:49:08 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-08-30 10:24:29 +00:00
|
|
|
"adm-zip": "^0.5.16",
|
2023-12-21 10:12:03 +00:00
|
|
|
"mkdirp": "^3.0.1",
|
2025-05-06 06:35:59 +00:00
|
|
|
"vite": "^6.3.5",
|
2025-05-20 03:43:29 +00:00
|
|
|
"vitest": "^3.1.4",
|
2023-10-24 09:43:41 +00:00
|
|
|
"tmp-promise": "^3.0.3"
|
2022-03-08 16:49:08 +00:00
|
|
|
}
|
|
|
|
|
}
|