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
30 lines (30 loc) 路 958 Bytes
/
Copy pathdevcontainer-feature.json
File metadata and controls
30 lines (30 loc) 路 958 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
{
"id": "bun-package",
"version": "1.0.0",
"name": "Bun package",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/bun-package",
"description": "Installs a Bun package globally using Bun.",
"options": {
"package": {
"default": "",
"description": "Select the Bun package to install globally.",
"type": "string"
},
"version": {
"default": "latest",
"description": "Select the version of the Bun package to install.",
"proposals": [
"latest"
],
"type": "string"
},
"nameHint": {
"default": "",
"description": "Optional: name to use for skip install checks (useful for git / URL / non-npm sources).",
"type": "string"
}
},
"installsAfter": [
"ghcr.io/devcontainers-extra/features/bun"
]
}