{ "homepage": "https://github.com/tristanisham/zvm", "version": "0.6.1", "description": "Zig Version Manager (zvm) is a tool for managing your Zig installs", "license": "MIT", "architecture": { "64bit": { "url": "https://github.com/tristanisham/zvm/releases/download/v0.6.1/zvm-windows-amd64.zip", "hash": "520eaa23ea323c9338c359bbbeb01046fcadfdd358dc22f539c7429f42d5feb6", "extract_dir": "zvm-windows-amd64" }, "arm64": { "url": "https://github.com/tristanisham/zvm/releases/download/v0.6.1/zvm-windows-arm64.zip", "hash": "51b5be265a9b705444fdd9c4e7e0b0d3ac1f2fea4a10ee582df29ff0f269fa89", "extract_dir": "zvm-windows-arm64" } }, "bin": "zvm.exe", "checkver": { "github": "https://github.com/tristanisham/zvm" }, "autoupdate": { "architecture": { "64bit": { "url": "https://github.com/tristanisham/zvm/releases/download/v$version/zvm-windows-amd64.zip", "extract_dir": "zvm-windows-amd64" }, "arm64": { "url": "https://github.com/tristanisham/zvm/releases/download/v$version/zvm-windows-arm64.zip", "extract_dir": "zvm-windows-arm64" } } }, "post_install": [ "if (Test-Path ~\\.zvm) {", " if ($null -eq (Get-Item ~\\.zvm).LinkType) {", " Rename-Item -Path ~\\.zvm -NewName ~\\.zvm.old -Force", " } else {", " Remove-Item -Path ~\\.zvm -Force", " }", "}", "New-Item -Path ~/.zvm -Target \"$dir\\data\" -ItemType Junction | Out-Null" ], "uninstaller": { "script": [ "if ((Test-Path ~\\.zvm) -and ($null -ne (Get-Item ~\\.zvm).LinkType)) {", " Remove-Item -Path ~\\.zvm -Force", "}", "if (Test-Path ~\\.zvm.old) {", " Rename-Item -Path ~\\.zvm.old -NewName .zvm -Force", "}" ] }, "persist": "data", "env_add_path": "data\\bin" }