-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 1.92 KB
/
package.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
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
{
"name": "conda-wingman",
"displayName": "Conda Wingman",
"description": "Help programmers use environments without memorising conda commands.",
"version": "1.0.0",
"publisher": "DJSaunders1997",
"engines": {
"vscode": "^1.75.1"
},
"categories": [
"Other",
"Snippets",
"Data Science",
"Machine Learning"
],
"icon": "images/Logo-Banner.png",
"galleryBanner": {
"color": "#42AF29",
"theme": "dark"
},
"keywords": [
"Conda",
"Wingman",
"Environment",
"Environments",
"YAML"
],
"preview": false,
"activationEvents": [
"onLanguage:yaml",
"onCommand:conda-wingman.buildCondaYAML",
"onCommand:conda-wingman.activateCondaYAML",
"onCommand:conda-wingman.writeRequirementsFile",
"onCommand:conda-wingman.deleteCondaEnv"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "conda-wingman.buildCondaYAML",
"title": "Conda Wingman: Build Conda Environment from YAML file"
},
{
"command": "conda-wingman.activateCondaYAML",
"title": "Conda Wingman: Activate Conda Environment from YAML file"
},
{
"command": "conda-wingman.writeRequirementsFile",
"title": "Conda Wingman: Write a requirements YAML file from the active Conda Environment"
},
{
"command": "conda-wingman.deleteCondaEnv",
"title": "Conda Wingman: Delete Conda Environment"
}
]
},
"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"
}
}