-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
42 lines (42 loc) · 1.16 KB
/
devcontainer-feature.json
File metadata and controls
42 lines (42 loc) · 1.16 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
39
40
41
42
{
"name": "Exercism CLI",
"id": "exercism-cli",
"version": "1.0.2",
"documentationURL": "https://github.com/CodeMan99/features/tree/main/src/exercism-cli",
"description": "Install the exercism-cli.",
"options": {
"version": {
"default": "latest",
"description": "Specify what version to install.",
"type": "string"
},
"destdir": {
"default": "/usr/local/bin",
"description": "Filesystem location of the exercism binary.",
"type": "string"
},
"os": {
"default": "linux",
"description": "Specify the target operating system.",
"enum": [
"darwin",
"freebsd",
"linux",
"openbsd"
],
"type": "string"
},
"arch": {
"default": "x86_64",
"description": "Specify the target CPU architecture.",
"enum": [
"armv5",
"armv6",
"i386",
"ppc64",
"x86_64"
],
"type": "string"
}
}
}