pyright/package.json

31 lines
1.0 KiB
JSON
Raw Normal View History

2019-03-12 06:45:56 +03:00
{
"name": "pyright",
"displayName": "Pyright",
"description": "Type checker for the Python language",
2019-03-24 07:55:32 +03:00
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Microsoft Corporation"
},
"publisher": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/pyright"
},
2019-03-12 06:45:56 +03:00
"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 ..",
"build:pyright": "cd server && npm run build:pyright && cd ..",
"package": "npm run build && cd client && npx vsce package && cd .."
2019-03-12 06:45:56 +03:00
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^11.10.5",
"typescript": "^3.2.2"
},
"main": "index.js"
2019-03-12 06:45:56 +03:00
}