-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 3.91 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
{
"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",
"engines": {
"podman-desktop": ">=1.10.0"
},
"main": "./dist/extension.js",
"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.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"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"@types/node": "^20",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"7zip-min": "^1.4.5",
"@eslint/compat": "^1.2.2",
"@podman-desktop/api": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.14.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-progress": "^3.0.0",
"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": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"mkdirp": "^3.0.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "^8.13.0",
"validator": "^13.12.0",
"vite": "^5.4.10",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}