mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-08-04 22:38:02 +00:00
38 lines
No EOL
719 B
JSON
38 lines
No EOL
719 B
JSON
{
|
|
"name": "vscode-pype",
|
|
"displayName": "pype",
|
|
"description": "A Python static code analyzer & language server for VSCode",
|
|
"publisher": "gmshiba",
|
|
"version": "0.1.0",
|
|
"engines": {
|
|
"vscode": "^1.70.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mtshiba/pype.git"
|
|
},
|
|
"main": "./extension.js",
|
|
"activationEvents": [
|
|
"onLanguage:python"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "python",
|
|
"aliases": [
|
|
"Python",
|
|
"python"
|
|
],
|
|
"extensions": [
|
|
".py"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^7.0.0"
|
|
}
|
|
} |