forked from devcontainers-extra/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
38 lines (38 loc) 路 1.22 KB
/
Copy pathdevcontainer-feature.json
File metadata and controls
38 lines (38 loc) 路 1.22 KB
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
{
"name": "Homebrew Package",
"id": "homebrew-package",
"version": "1.0.9",
"description": "Installs a Homebrew package.",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/homebrew-package",
"installsAfter": [
"ghcr.io/meaningful-ooo/devcontainer-features/homebrew:2"
],
"options": {
"package": {
"type": "string",
"proposals": [
"typescript",
"vtop",
"fkill-cli"
],
"default": "",
"description": "Select the Homebrew package to install."
},
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Select the version of the Homebrew package to install."
},
"installation_flags": {
"type": "string",
"proposals": [
"--ignore-dependencies"
],
"default": "",
"description": "Additional installation flags. These would be used as extra arguments to the brew command (`brew install <installation_flags> <package>@<version>`)"
}
}
}