forked from microsoft/pyright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 745 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "pyright",
"displayName": "Pyright",
"description": "VS Code language support and type checking 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"
}
}