pyright/package.json
2020-07-26 10:48:51 -07:00

46 lines
1.7 KiB
JSON

{
"name": "pyright",
"displayName": "Pyright",
"description": "Type checker for the Python language",
"version": "1.1.57",
"license": "MIT",
"author": {
"name": "Microsoft Corporation"
},
"publisher": "Microsoft Corporation",
"engines": {
"node": ">=12.0.0"
},
"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": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "2.0.5",
"typescript": "^3.9.5"
},
"main": "index.js",
"bin": {
"pyright": "index.js",
"pyright-langserver": "langserver.index.js"
}
}