-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
48 lines (48 loc) · 1.31 KB
/
devcontainer-feature.json
File metadata and controls
48 lines (48 loc) · 1.31 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
43
44
45
46
47
48
{
"id": "aider",
"version": "1.1.0",
"name": "Aider",
"description": "Aider lets you pair program with LLMs, to edit code in your local Git repository.",
"documentationURL": "https://github.com/ivy/devcontainer-features/blob/main/src/aider#readme",
"licenseURL": "https://github.com/ivy/devcontainer-features/blob/main/LICENSE",
"options": {
"version": {
"type": "string",
"default": "latest",
"proposals": [
"latest",
"0.69.1"
],
"description": "Select an Aider version to install."
},
"installPlaywright": {
"type": "boolean",
"default": true,
"description": "Install Playwright for the best web scraping."
},
"installPlaywrightBrowsers": {
"type": "string",
"default": "chromium",
"proposals": [
"chromium",
"chromium-headless-shell",
"chrome",
"chrome-beta",
"msedge",
"msedge-beta",
"msedge-dev",
"bidi-chromium",
"firefox",
"webkit"
],
"description": "Select the browsers to install for Playwright (comma-delimit for multiple)."
}
},
"dependsOn": {
"ghcr.io/devcontainers/features/python": {}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/python"
]
}