-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
38 lines (38 loc) · 964 Bytes
/
devcontainer-feature.json
File metadata and controls
38 lines (38 loc) · 964 Bytes
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": "Quarto CLI",
"id": "quarto-cli",
"version": "1.1.4",
"description": "Installs the Quarto CLI. Auto-detects latest version.",
"documentationURL": "https://github.com/rocker-org/devcontainer-features/tree/main/src/quarto-cli",
"options": {
"version": {
"type": "string",
"proposals": [
"latest",
"prerelease"
],
"default": "latest",
"description": "Select version of the Quarto CLI, if not latest."
},
"installTinyTex": {
"type": "boolean",
"default": false,
"description": "Install TinyTeX by using the `quarto install tinytex` command. Works only with version 1.2 or later."
},
"installChromium": {
"type": "boolean",
"default": false,
"description": "Run the `quarto install chromium` command. Check the document for details."
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
],
"customizations": {
"vscode": {
"extensions": [
"quarto.quarto"
]
}
}
}