-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 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
49
50
51
52
53
54
55
56
{
"name": "vscode-micromamba-envs",
"displayName": "Micromamba Envs",
"description": "Discovers, displays, and sets your micromamba environments.",
"version": "0.3.0",
"publisher": "symzn",
"engines": {
"vscode": "^1.80.0"
},
"repository": {
"type": "git",
"url": "https://github.com/symzn/vscode-micromamba-env-selector.git"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "micromamba-envs.select",
"title": "Micromamba: Select Environment"
}
],
"configuration": {
"title": "Micromamba Envs",
"properties": {
"micromamba-envs.micromambaBinary": {
"type": "string",
"default": "",
"description": "Path or name of the micromamba executable. If empty, tries to detect it via shell."
},
"micromamba-envs.rootPrefix": {
"type": "string",
"default": "",
"description": "The Micromamba root prefix. If empty, tries to detect MAMBA_ROOT_PREFIX via shell."
},
"micromamba-envs.environmentsTxtPath": {
"type": "string",
"default": "",
"description": "Custom path to environments.txt. If empty, defaults to ~/.conda/environments.txt."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.80.0",
"typescript": "^5.4.0"
}
}