-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
131 lines (131 loc) · 4.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "minikube",
"displayName": "Minikube",
"description": "Integration for minikube: a tool that makes it easy to run Kubernetes locally",
"version": "0.5.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"type": "module",
"engines": {
"podman-desktop": ">=1.10.0"
},
"main": "./dist/extension.cjs",
"contributes": {
"configuration": {
"title": "Minikube",
"properties": {
"minikube.home": {
"type": "string",
"default": "",
"markdownDescription": "Path for the `.minikube` directory that minikube uses for state/configuration. See [documentation](https://minikube.sigs.k8s.io/docs/handbook/config/#environment-variables)"
},
"minikube.cluster.creation.name": {
"type": "string",
"default": "minikube",
"scope": "KubernetesProviderConnectionFactory",
"description": "Name"
},
"minikube.cluster.creation.driver": {
"type": "string",
"default": "podman",
"enum": [
"podman",
"docker"
],
"scope": "KubernetesProviderConnectionFactory",
"description": "Driver"
},
"minikube.cluster.creation.runtime": {
"type": "string",
"default": "cri-o",
"enum": [
"cri-o",
"containerd",
"docker"
],
"scope": "KubernetesProviderConnectionFactory",
"description": "Container Runtime"
},
"minikube.cluster.creation.nodes": {
"type": "integer",
"default": 1,
"scope": "KubernetesProviderConnectionFactory",
"description": "The total number of nodes to spin up"
},
"minikube.cluster.creation.addons": {
"type": "string",
"scope": "KubernetesProviderConnectionFactory",
"markdownDescription": "Comma-separated list of [addons](https://minikube.sigs.k8s.io/docs/commands/addons/) to enable. See `minikube addons list` for a list of valid addon names"
},
"minikube.cluster.creation.base-image": {
"type": "string",
"scope": "KubernetesProviderConnectionFactory",
"markdownDescription": "Optional base image to use for docker/podman drivers. See [documentation](https://minikube.sigs.k8s.io/docs/commands/start/#options). Intended for local development"
},
"minikube.cluster.creation.mount-string": {
"type": "string",
"scope": "KubernetesProviderConnectionFactory",
"markdownDescription": "Optional mount definition `host-path:container-path` to include during the start of minikube container. See [documentation](https://minikube.sigs.k8s.io/docs/commands/start/#options)"
}
}
},
"menus": {
"dashboard/image": [
{
"command": "minikube.image.move",
"title": "Push image to minikube cluster"
}
]
}
},
"scripts": {
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"watch": "vite build -w",
"typecheck": "tsc --noEmit",
"test:e2e": "cd tests/playwright && npm run test:e2e"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"@types/node": "^20",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"7zip-min": "^1.4.5",
"@eslint/compat": "^1.2.4",
"@playwright/test": "^1.49.1",
"@podman-desktop/api": "^1.14.2",
"@podman-desktop/tests-playwright": "next",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.0.5",
"electron": "^33.2.1",
"eslint": "^9.17.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-progress": "^3.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"mkdirp": "^3.0.1",
"prettier": "^3.4.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.2",
"validator": "^13.12.0",
"vite": "^6.0.5",
"vitest": "^2.0.5",
"xvfb-maybe": "^0.2.1"
},
"packageManager": "pnpm@9.12.1+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}