2019-03-12 06:45:56 +03:00
|
|
|
{
|
|
|
|
"name": "pyright",
|
|
|
|
"displayName": "Pyright",
|
2019-03-24 12:58:01 +03:00
|
|
|
"description": "Type checker for the Python language",
|
2020-04-15 20:40:47 +03:00
|
|
|
"version": "1.1.32",
|
2019-03-24 12:58:01 +03:00
|
|
|
"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": {
|
2019-03-24 13:06:45 +03:00
|
|
|
"install:all": "npm install && cd server && npm install && cd ../client && npm install && cd ..",
|
2020-02-12 04:38:00 +03:00
|
|
|
"build": "npm run clean && npm run build:clientServerDebug && npm run build:cli",
|
2019-03-12 06:45:56 +03:00
|
|
|
"build:client": "cd client && npm run build && cd ..",
|
2020-02-05 09:27:45 +03:00
|
|
|
"build:clientServerDebug": "npm run build:serverDebug && npm run build:client",
|
2019-10-06 08:42:25 +03:00
|
|
|
"build:serverProd": "cd server && npm run build:serverProd && cd ..",
|
|
|
|
"build:serverDebug": "cd server && npm run build:serverDebug && cd ..",
|
2019-10-06 06:10:47 +03:00
|
|
|
"build:cli": "cd server && npm run build:cli && cd ..",
|
2020-02-20 04:11:04 +03:00
|
|
|
"clean": "del-cli \"./client/server\" && del-cli \"./client/out\" && del-cli \"./dist\"",
|
2020-02-15 23:57:27 +03:00
|
|
|
"package": "npm run install:all && npm run clean && npm run build:serverProd && npm run build:cli && cd client && npx vsce package && cd .."
|
2019-03-12 06:45:56 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-10 05:35:11 +03:00
|
|
|
"@types/node": "^13.11.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
|
|
|
"@typescript-eslint/parser": "^2.27.0",
|
2020-02-12 04:38:00 +03:00
|
|
|
"del-cli": "^3.0.0",
|
2020-02-15 12:00:51 +03:00
|
|
|
"eslint": "^6.8.0",
|
2020-03-30 06:12:55 +03:00
|
|
|
"eslint-config-prettier": "^6.10.1",
|
2020-03-15 18:15:53 +03:00
|
|
|
"eslint-plugin-simple-import-sort": "^5.0.2",
|
2020-04-08 03:18:22 +03:00
|
|
|
"prettier": "2.0.4",
|
2020-03-15 18:15:53 +03:00
|
|
|
"typescript": "^3.8.3"
|
2019-03-24 12:58:01 +03:00
|
|
|
},
|
2019-03-24 13:31:37 +03:00
|
|
|
"main": "index.js",
|
|
|
|
"bin": {
|
|
|
|
"pyright": "index.js"
|
|
|
|
}
|
2019-03-12 06:45:56 +03:00
|
|
|
}
|