-
Notifications
You must be signed in to change notification settings - Fork 0
/
devcontainer-feature.json
51 lines (51 loc) · 1.51 KB
/
devcontainer-feature.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
{
"name": "Cascadia Code Font",
"id": "cascadia-code",
"version": "1.0.0",
"description": "Installs the Cascadia Code font.",
"documentationURL": "https://github.com/jpawlowski/devcontainer-features/tree/main/src/cascadia-code",
"licenseURL": "https://github.com/jpawlowski/devcontainer-features/tree/main/LICENSE.txt",
"keywords": [
"font"
],
"options": {
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Set the version of the font to install."
},
"installFontconfig":{
"type": "boolean",
"default": true,
"description": "Set to true to install Font Configuration."
},
"installStaticTTF": {
"type": "boolean",
"default": true,
"description": "Set to true to install the static TTF version of the font."
},
"installStaticOTF": {
"type": "boolean",
"default": false,
"description": "Set to true to install the static OTF version of the font."
},
"installStaticWOFF2": {
"type": "boolean",
"default": false,
"description": "Set to true to install the static WOFF2 version of the font."
},
"installVariableTTF": {
"type": "boolean",
"default": false,
"description": "Set to true to install the variable TTF version of the font."
},
"installVariableWOFF2": {
"type": "boolean",
"default": false,
"description": "Set to true to install the variable WOFF2 version of the font."
}
}
}