forked from microsoft/pyright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "pyright",
"displayName": "Pyright",
"description": "Type checker for the Python language",
"version": "1.1.52",
"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"
}
}