pyright/package.json
2020-05-22 12:37:29 -07:00

42 lines
1.6 KiB
JSON

{
"name": "pyright",
"displayName": "Pyright",
"description": "Type checker for the Python language",
"version": "1.1.37",
"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 clean && npm run build:clientServerDebug && npm run build:cli",
"build:client": "cd client && npm run build && cd ..",
"build:clientServerDebug": "npm run build:serverDebug && npm run build:client",
"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 ..",
"clean": "del-cli \"./client/server\" && del-cli \"./client/out\" && del-cli \"./dist\"",
"package": "npm run install:all && npm run clean && npm run build:serverProd && npm run build:cli && cd client && npx vsce package && cd .."
},
"devDependencies": {
"@types/node": "^13.13.9",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"del-cli": "^3.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "2.0.4",
"typescript": "^3.9.3"
},
"main": "index.js",
"bin": {
"pyright": "index.js"
}
}