{ "name": "pyright", "displayName": "Pyright", "description": "VS Code language support for Python", "version": "0.1.0", "licensce": "MIT", "author": { "name": "Microsoft Corporation" }, "publisher": "Microsoft", "repository": { "type": "git", "url": "https://github.com/Microsoft/pyright" }, "engines": { "vscode": "^1.26.0" }, "keywords": [ "python" ], "categories": [ "Programming Languages" ], "activationEvents": [ "onLanguage:python" ], "main": "./out/src/extension", "contributes": { "languages": [ { "id": "python", "aliases": [ "Python" ], "extensions": [ ".py", ".pyi" ] } ] }, "scripts": { "vscode:prepublish": "npm run build", "build": "tsc -p ./", "update-vscode": "node ./node_modules/vscode/bin/install", "postinstall": "node ./node_modules/vscode/bin/install" }, "devDependencies": { "typescript": "^3.2.2", "vscode": "^1.1.26" }, "dependencies": { "vscode-languageclient": "^5.1.1" } }