pyright/package.json
Rich Chiodo e01b0fe205
Add test(s) that validate Pyright can talk over LSP (#7172)
* Everything building, but not running

* More tests passing

* Fix test to open a file

* Remove unused functions and consolidate others

* Remove unused custom lsp messages

* Add comments
2024-01-31 16:38:37 -08:00

47 lines
1.9 KiB
JSON

{
"name": "pyright-root",
"private": true,
"scripts": {
"postinstall": "node ./build/skipBootstrap.js || npm run install:others",
"clean": "lerna run --no-bail --stream clean",
"install:all": "npm install",
"install:others": "cross-env SKIP_LERNA_BOOTSTRAP=yes lerna exec --no-bail npm install",
"update:all": "node ./build/updateDeps.js",
"build:extension:dev": "cd packages/vscode-pyright && npm run webpack",
"build:cli:dev": "cd packages/pyright && npm run webpack",
"watch:extension": "cd packages/vscode-pyright && npm run webpack-dev",
"watch:testserver": "cd packages/pyright-internal && npm run webpack:testserver:watch",
"check": "npm run check:syncpack && npm run check:eslint && npm run check:prettier",
"check:syncpack": "syncpack list-mismatches",
"fix:syncpack": "syncpack fix-mismatches --indent \" \" && npm run install:all",
"check:eslint": "eslint .",
"fix:eslint": "eslint --fix .",
"check:prettier": "prettier -c .",
"fix:prettier": "prettier --write .",
"typecheck": "npx lerna exec --stream --no-bail --ignore=pyright -- tsc --noEmit"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^17.0.45",
"@types/yargs": "^16.0.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"detect-indent": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"glob": "^7.2.3",
"jsonc-parser": "^3.2.0",
"lerna": "^7.1.4",
"nx": "^17.1.3",
"npm-check-updates": "^16.10.16",
"p-queue": "^7.3.4",
"prettier": "2.8.8",
"syncpack": "~10.6.1",
"typescript": "~5.2",
"word-wrap": "1.2.4",
"yargs": "^16.2.0"
}
}