-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "python-envy",
"displayName": "Python Envy",
"description": "Automatically activate Python virtual environments as you navigate the source code",
"publisher": "teticio",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/teticio/python-envy.git"
},
"version": "0.1.11",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"keywords": [
"python",
"monorepo",
"venv",
"virtualenv",
"poetry",
"pipenv"
],
"activationEvents": [
"onDebugInitialConfigurations",
"onLanguage:python",
"onDebugResolve:python",
"workspaceContains:mspythonconfig.json",
"workspaceContains:pyproject.toml",
"workspaceContains:Pipfile",
"workspaceContains:setup.py",
"workspaceContains:requirements.txt",
"workspaceContains:manage.py",
"workspaceContains:app.py",
"workspaceContains:*.ipynb"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Python Envy",
"properties": {
"pythonEnvy.venvName": {
"type": "string",
"default": ".venv",
"description": "Name of the Python virtual environment directory."
},
"pythonEnvy.showNotifications": {
"type": "boolean",
"default": true,
"description": "Show information messages when Python interpreter is automatically switched"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "vscode-test"
},
"extensionDependencies": [
"ms-python.python"
],
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@vscode/python-extension": "^1.0.5"
}
}