pyright/package.json
2019-03-19 14:24:51 -07:00

20 lines
727 B
JSON

{
"name": "pyright",
"displayName": "Pyright",
"description": "VS Code language support for Python",
"version": "1.0.0",
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build && cd ..",
"build:server": "cd server && npm run build && cd ..",
"build:analyzer": "cd server && npm run build:analyzer && cd ..",
"package": "npm run build && cd client && npx vsce package && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^11.10.5",
"typescript": "^3.2.2"
}
}