pyright/package.json
2019-11-21 20:48:24 -08:00

35 lines
1.3 KiB
JSON

{
"name": "pyright",
"displayName": "Pyright",
"description": "Type checker for the Python language",
"version": "1.1.3",
"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.8",
"typescript": "^3.7.2"
},
"main": "index.js",
"bin": {
"pyright": "index.js"
}
}