mirror of
https://github.com/microsoft/pyright.git
synced 2024-11-10 10:44:34 +03:00
35 lines
1.3 KiB
JSON
35 lines
1.3 KiB
JSON
{
|
|
"name": "pyright",
|
|
"displayName": "Pyright",
|
|
"description": "Type checker for the Python language",
|
|
"version": "1.0.84",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"publisher": "Microsoft Corporation",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/pyright"
|
|
},
|
|
"scripts": {
|
|
"install:all": "npm install && cd server && npm install && cd ../client && npm install && cd ..",
|
|
"build": "npm run build:clientServerDebug && npm run build:cli",
|
|
"build:client": "cd client && npm run build && cd ..",
|
|
"build:clientServerDebug": "npm run build:client && npm run build:serverDebug",
|
|
"build:serverProd": "cd server && npm run build:serverProd && cd ..",
|
|
"build:serverDebug": "cd server && npm run build:serverDebug && cd ..",
|
|
"build:cli": "cd server && npm run build:cli && cd ..",
|
|
"package": "npm run install:all && npm run build:serverProd && npm run build && cd client && npx vsce package && cd .."
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.12.3",
|
|
"typescript": "^3.6.4"
|
|
},
|
|
"main": "index.js",
|
|
"bin": {
|
|
"pyright": "index.js"
|
|
}
|
|
}
|