pyright/package.json

35 lines
1.3 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-11-08 03:47:53 +03:00
"version": "1.0.84",
"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": {
"install:all": "npm install && cd server && npm install && cd ../client && npm install && cd ..",
"build": "npm run build:clientServerDebug && npm run build:cli",
2019-03-12 06:45:56 +03:00
"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 ..",
2019-10-16 01:01:45 +03:00
"package": "npm run install:all && npm run build:serverProd && npm run build && cd client && npx vsce package && cd .."
2019-03-12 06:45:56 +03:00
},
"devDependencies": {
2019-06-08 07:34:17 +03:00
"@types/mocha": "^5.2.7",
2019-11-16 05:36:29 +03:00
"@types/node": "^12.12.8",
"typescript": "^3.7.2"
},
"main": "index.js",
"bin": {
"pyright": "index.js"
}
2019-03-12 06:45:56 +03:00
}