-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.47 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.47 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "conda-wingman",
"displayName": "Conda Wingman",
"description": "Status bar buttons and commands for managing Conda environments from YAML files.",
"version": "1.2.0",
"publisher": "DJSaunders1997",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other",
"Data Science",
"Machine Learning"
],
"icon": "images/Logo-Banner.png",
"galleryBanner": {
"color": "#42AF29",
"theme": "dark"
},
"keywords": [
"Conda",
"Miniconda",
"Anaconda",
"Environment",
"YAML",
"Python"
],
"preview": false,
"activationEvents": [
"onLanguage:yaml",
"onCommand:conda-wingman.buildCondaYAML",
"onCommand:conda-wingman.activateCondaYAML",
"onCommand:conda-wingman.writeRequirementsFile",
"onCommand:conda-wingman.deleteCondaEnv",
"onCommand:conda-wingman.switchEnvironment"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "conda-wingman.buildCondaYAML",
"title": "Conda Wingman: Build Environment from YAML"
},
{
"command": "conda-wingman.activateCondaYAML",
"title": "Conda Wingman: Activate Environment from YAML"
},
{
"command": "conda-wingman.writeRequirementsFile",
"title": "Conda Wingman: Export Environment to YAML"
},
{
"command": "conda-wingman.deleteCondaEnv",
"title": "Conda Wingman: Delete Environment"
},
{
"command": "conda-wingman.switchEnvironment",
"title": "Conda Wingman: Switch Environment"
}
],
"configuration": {
"title": "Conda Wingman",
"properties": {
"condaWingman.showStatusBarItems": {
"type": "boolean",
"default": true,
"description": "Show Conda Wingman buttons in the status bar when a YAML file is open."
},
"condaWingman.autoSetInterpreter": {
"type": "boolean",
"default": true,
"description": "Automatically set the workspace Python interpreter when a conda environment is detected."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.2",
"@types/vscode": "^1.86.0",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.57.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/DJSaunders1997/Conda-Wingman.git"
},
"homepage": "https://github.com/DJSaunders1997/Conda-Wingman#readme",
"dependencies": {
"js-yaml": "^4.1.0"
}
}