podman-desktop/extensions/docker/package.json
dependabot[bot] 6bf0bb885a chore(deps-dev): bump the vitest group across 1 directory with 3 updates
Bumps the vitest group with 3 updates in the / directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).


Updates `@vitest/coverage-v8` from 3.0.6 to 3.0.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.8/packages/coverage-v8)

Updates `@vitest/eslint-plugin` from 1.1.31 to 1.1.36
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](https://github.com/vitest-dev/eslint-plugin-vitest/compare/v1.1.31...v1.1.36)

Updates `vitest` from 3.0.6 to 3.0.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.8/packages/vitest)

---
updated-dependencies:
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: vitest
- dependency-name: "@vitest/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: vitest
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: vitest
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-10 15:33:46 +01:00

56 lines
1.5 KiB
JSON

{
"name": "docker",
"displayName": "Docker",
"description": "Integration for Docker engine",
"version": "1.18.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"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 --passWithNoTests",
"test:watch": "vitest watch --coverage --passWithNoTests",
"watch": "vite build --watch"
},
"dependencies": {
"@podman-desktop/api": "workspace:*"
},
"devDependencies": {
"@podman-desktop/api": "workspace:*",
"adm-zip": "^0.5.16",
"mkdirp": "^3.0.1",
"vite": "^6.2.1",
"vitest": "^3.0.8"
},
"contributes": {
"commands": [
{
"command": "docker.cli.context.onChange",
"title": "Callback for Docker CLI context change",
"category": "Docker",
"enablement": "false"
}
],
"configuration": {
"title": "Docker",
"properties": {
"docker.cli.context": {
"type": "string",
"enum": [],
"markdownDescription": "Select the active Docker CLI context:",
"group": "podman-desktop.docker",
"scope": "DockerCompatibility"
},
"docker.config": {
"type": "string",
"default": "",
"markdownDescription": "Docker Config directory. See [documentation](https://docs.docker.com/reference/cli/docker/#configuration-files)"
}
}
}
}
}